-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
7cce71c
commit 2b0afd6
Showing
13 changed files
with
74 additions
and
49 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,5 +1,7 @@ | ||
# @moonwall/docs | ||
|
||
## 5.9.0 | ||
|
||
## 5.8.0 | ||
|
||
### Minor Changes | ||
|
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
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 |
---|---|---|
@@ -1,5 +1,45 @@ | ||
# @moonwall/cli | ||
|
||
## 5.9.0 | ||
|
||
### Minor Changes | ||
|
||
- 543bda2: Update Inquirer | ||
|
||
### Patch Changes | ||
|
||
- 7cce71c: Added vitest arg pass through | ||
- 7cce71c: ### Enhanced Test CLI Options | ||
|
||
#### New Features | ||
|
||
- Added support for passing Vitest configuration options directly through CLI | ||
|
||
```bash | ||
moonwall test dev_test --vitest "bail=2 retry=2" | ||
``` | ||
|
||
This can also be added to your `moonwall.config.json` file like: | ||
|
||
```json | ||
{ | ||
"name": "passthrough_test", | ||
"testFileDir": ["suites/multi_fail"], | ||
"description": "Testing that bail can be passed through", | ||
"foundation": { | ||
"type": "read_only" | ||
}, | ||
"vitestArgs": { | ||
"bail": 1 | ||
}, | ||
"connections": [] | ||
} | ||
``` | ||
|
||
- Updated dependencies [543bda2] | ||
- @moonwall/[email protected] | ||
- @moonwall/[email protected] | ||
|
||
## 5.8.0 | ||
|
||
### Minor Changes | ||
|
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
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 |
---|---|---|
@@ -1,5 +1,11 @@ | ||
# @moonwall/types | ||
|
||
## 5.9.0 | ||
|
||
### Minor Changes | ||
|
||
- 543bda2: Update Inquirer | ||
|
||
## 5.8.0 | ||
|
||
### Minor Changes | ||
|
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
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
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
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
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "@moonwall/tests", | ||
"type": "module", | ||
"version": "5.8.0", | ||
"version": "5.9.0", | ||
"private": true, | ||
"packageManager": "[email protected]", | ||
"description": "Testing framework for the Moon family of projects", | ||
|