Skip to content

Commit

Permalink
test: fix ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
turadg committed Sep 9, 2024
1 parent f7e860a commit 06d065a
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions a3p-integration/proposals/z:acceptance/test.sh
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

0 comments on commit 06d065a

Please sign in to comment.