From 8caac2d2d48266000821d1693bbf1afeecb7d00d Mon Sep 17 00:00:00 2001 From: Turadg Aleahmad Date: Mon, 9 Sep 2024 15:12:50 -0700 Subject: [PATCH] test: fix ordering --- a3p-integration/proposals/z:acceptance/test.sh | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/a3p-integration/proposals/z:acceptance/test.sh b/a3p-integration/proposals/z:acceptance/test.sh index 0aade020e3b..c768ab12f08 100755 --- a/a3p-integration/proposals/z:acceptance/test.sh +++ b/a3p-integration/proposals/z:acceptance/test.sh @@ -6,10 +6,6 @@ set -ueo pipefail # 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 - npm install -g tsx scripts/test-vaults.mts @@ -17,3 +13,8 @@ scripts/test-vaults.mts ./state-sync-snapshots-test.sh ./genesis-test.sh + +# XXX the above tests expect certain block heights so the glob of tests that +# might change state has to come last. +GLOBIGNORE=initial.test.js +yarn ava ./*.test.js