From 3a66d7676a70f110300ce2e5053ec2695da92b3d Mon Sep 17 00:00:00 2001 From: Theo Butler Date: Thu, 26 Oct 2023 12:56:15 -0400 Subject: [PATCH] fix: build before test --- packages/indexer-native/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/indexer-native/package.json b/packages/indexer-native/package.json index ba0129e42..071adfc15 100644 --- a/packages/indexer-native/package.json +++ b/packages/indexer-native/package.json @@ -41,7 +41,7 @@ "lint": "eslint .", "prepare": "yarn format && yarn lint", "install": "yarn pull-or-build", - "test": "jest --colors --verbose --forceExit", + "test": "yarn build && jest --colors --verbose --forceExit", "test:ci": "jest --verbose --ci", "clean": "rm -rf ./node_modules ./binary ./build ./coverage ./native/target ./native/artifacts.json ./native/index.node" },