From 7142bfa548f650d3b018092fb826168dfafd177b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20=C5=9Aliwak?= Date: Mon, 10 Jan 2022 21:11:50 +0100 Subject: [PATCH] trident: Sort test suites to make the order the same in CI and locally --- test/externalTests/trident.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/externalTests/trident.sh b/test/externalTests/trident.sh index d82b0a707..c244efd09 100755 --- a/test/externalTests/trident.sh +++ b/test/externalTests/trident.sh @@ -35,7 +35,7 @@ function test_fn { TS_NODE_TRANSPILE_ONLY=1 npx hardhat test --no-compile $( # TODO: We need to skip Migration.test.ts because it fails and makes other tests fail too. # Replace this with `yarn test` once https://github.com/sushiswap/trident/issues/283 is fixed. - find test/ -name "*.test.ts" ! -path "test/Migration.test.ts" + find test/ -name "*.test.ts" ! -path "test/Migration.test.ts" | LC_ALL=C sort ) }