-
Notifications
You must be signed in to change notification settings - Fork 215
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
8 additions
and
3 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 |
---|---|---|
@@ -1,19 +1,24 @@ | ||
#!/bin/bash | ||
set -ueo pipefail | ||
|
||
# Place here any test that should be executed using the executed proposal. | ||
# The effects of this step are not persisted in further proposal layers. | ||
|
||
# test the state right after the previous proposals | ||
yarn ava initial.test.js | ||
|
||
# test more, in ways that change system state | ||
GLOBIGNORE=initial.test.js | ||
yarn ava ./*.test.js | ||
# XXX some of these tests have path dependencies so no globs | ||
yarn ava core-eval.test.js | ||
|
||
npm install -g tsx | ||
scripts/test-vaults.mts | ||
|
||
echo ACCEPTANCE TESTING kread | ||
./create-kread-item-test.sh | ||
|
||
echo ACCEPTANCE TESTING valueVow | ||
yarn ava valueVow.test.js | ||
|
||
echo ACCEPTANCE TESTING state sync | ||
./state-sync-snapshots-test.sh | ||
./genesis-test.sh |