Skip to content

Commit febab5e

Browse files
authored
enable zksync tests again (#863)
This pull request includes a small but significant change to the `package.json` file to enhance the testing process. Enhancements to testing: * [`package.json`](diffhunk://#diff-7ae45ad102eab3b6d7e7896acd08c427a9b25b346470d7bc6507b6481575d519L22-R22): Modified the `test` script to include running `test:zk` to ensure zkSync tests are executed along with other tests.
1 parent 691aa4f commit febab5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"build:ts": "rimraf dist && tsc -p tsconfig.prod.json",
2020
"build:ts:dev": "rimraf dist && tsc -p tsconfig.json",
2121
"test:zk": "HARDHAT_ENABLE_ZKSYNC=1 hardhat test",
22-
"test": "hardhat test --network hardhat && npm run test:L1 && npm run test:L2",
22+
"test": "hardhat test --network hardhat && npm run test:L1 && npm run test:L2 && npm run test:zk",
2323
"test:parallel": "hardhat test --parallel",
2424
"test:L1": "HARDHAT_CHAIN_ID=1 hardhat test --grep '@L1'",
2525
"test:L2": "SAFE_CONTRACT_UNDER_TEST=SafeL2 hardhat test --network hardhat",

0 commit comments

Comments
 (0)