-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: adding testing artifacts that validate the failure to render the…
… template.
- Loading branch information
1 parent
7f2f57d
commit 4aa42ff
Showing
2 changed files
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# test_template_fail | ||
|
||
Welcome to your new AlgoKit project! | ||
|
||
This is your workspace root. A `workspace` in AlgoKit is an orchestrated collection of standalone projects (backends, smart contracts, frontend apps and etc). | ||
|
||
By default, `projects_root_path` parameter is set to `projects`. Which instructs AlgoKit CLI to create a new directory under `projects` directory when new project is instantiated via `algokit init` at the root of the workspace. | ||
|
||
## Getting Started | ||
|
||
To get started refer to `README.md` files in respective sub-projects in the `projects` directory. | ||
|
||
To learn more about algokit, visit [documentation](https://github.com/algorandfoundation/algokit-cli/blob/main/docs/algokit.md). | ||
|
||
### GitHub Codespaces | ||
|
||
To get started execute: | ||
|
||
1. `algokit generate devcontainer` - invoking this command from the root of this repository will create a `devcontainer.json` file with all the configuration needed to run this project in a GitHub codespace. [Run the repository inside a codespace](https://docs.github.com/en/codespaces/getting-started/quickstart) to get started. | ||
2. `algokit init` - invoke this command inside a github codespace to launch an interactive wizard to guide you through the process of creating a new AlgoKit project | ||
|
||
Powered by [Copier templates](https://copier.readthedocs.io/en/stable/). |
24 changes: 24 additions & 0 deletions
24
tests_generated/test_template_fail/test_template_fail.code-workspace
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
"folders": [ | ||
{ | ||
"path": "./", | ||
"name": "ROOT" | ||
} | ||
], | ||
"settings": { | ||
"files.exclude": { | ||
"projects/": true | ||
}, | ||
"jest.disabledWorkspaceFolders": ["ROOT", "projects"] | ||
}, | ||
"extensions": { | ||
"recommendations": ["joshx.workspace-terminals"] | ||
}, | ||
"tasks": { | ||
"version": "2.0.0", | ||
"tasks": [] | ||
}, | ||
"launch": { | ||
"configurations": [] | ||
} | ||
} |