Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update changelog with testrunner path
Signed-off-by: shmck <[email protected]>
  • Loading branch information
ShMcK committed Apr 17, 2020
commit eaf27ffeee352c021c4355806ba99d21387b22af
29 changes: 28 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,31 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how

## [0.3.0]

- Validate the extension version against the tutorial config version. This should allow us to manage breaking changes in tutorial schema in upcoming versions
- Validate the extension version against the tutorial config version. This should allow us to manage breaking changes in tutorial schema in upcoming versions. See [node-semver](https://github.com/npm/node-semver#advanced-range-syntax) for possible version ranges and options.

```json
{
"config": {
"appVersions": {
"vscode": "<0.2"
},
}
```

- Configure the CodeRoad to load and run in a different directory. The example below will:
- load a commit and run npm install to setup the test runner in its own folder.
- run "npm test" in the \$ROOT/coderoad directory on save

```json
{
"config": {
"testRunner": {
"command": "npm test",
"path": "coderoad",
"actions": {
"commits": ["a974aea"],
"commands": ["cd coderoad && npm install"]
}
},
}
```