Skip to content

Commit

Permalink
don't run contract tests from yarn test
Browse files Browse the repository at this point in the history
  • Loading branch information
lalexgap authored and geoknee committed Sep 7, 2023
1 parent 557e2f3 commit e977564
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/contracts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ jobs:
run: yarn hardhat compile
- name: Run gas benchmarks
run: yarn benchmark:diff
- name: Run contract tests
run: yarn test:contracts
- name: Archive logs
if: always()
uses: actions/upload-artifact@v2
Expand Down
2 changes: 1 addition & 1 deletion packages/nitro-protocol/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"contracts:deploy-localhost": "yarn hardhat deploy --network localhost --export-all addresses.json && node ./scripts/postdeploy.ts",
"contracts:deploy-goerli": "yarn hardhat deploy --network goerli --export-all addresses.json && node ./scripts/postdeploy.js",
"contracts:node": "yarn hardhat node --no-deploy",
"test": "yarn test:contracts && yarn test:app --all",
"test": "yarn test:app",
"test:app": "yarn hardhat compile && jest -c ./config/jest/jest.config.js",
"test:contracts": "yarn hardhat compile && jest -c ./config/jest/jest.contracts.config.js",
"lint:check": "yarn eslint \"./\" --cache && yarn prettier:check",
Expand Down

0 comments on commit e977564

Please sign in to comment.