Skip to content

Commit

Permalink
fix-issue-236: filter out patch state test file in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
fospring committed Mar 8, 2024
1 parent 0c65539 commit e46e3f7
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests-sandbox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ jobs:
- name: Install dependencies
run: yarn
- name: Run tests
run: yarn test:sandbox:ci --fail-fast
run: test:sandbox:ci-with-ignore --fail-fast
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ if (getNetworkFromEnv() === 'sandbox') {
}>;

test.beforeEach(async t => {
console.log('run beforeEach');
const worker = await Worker.init();
const root = worker.rootAccount;
const contract = await root.devDeploy('__tests__/build/debug/status_message.wasm');
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"test:testnet:ci": "yarn build && TESTNET_MASTER_ACCOUNT_ID='ro3evqruqecmi7q4uwux1651245117258' ava --config ./ava.testnet.config.cjs",
"test:sandbox": "yarn test:sandbox:ci --verbose",
"test:sandbox:ci": "yarn build && ava",
"test:sandbox:ci-with-ignore": "yarn build && ava __tests__/0* && cd examples/simple-project/ && ava && cd ../../packages/js && ava",
"test": "yarn test:sandbox && yarn test:testnet",
"prepare": "husky install",
"release": "yarn lerna publish",
Expand Down

0 comments on commit e46e3f7

Please sign in to comment.