forked from matter-labs/zksync-era
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(tests): lower timeouts (matter-labs#1428)
## What ❔ Lower timeouts, after our optimization in CI time ## Why ❔ <!-- Why are these changes done? What goal do they contribute to? What are the principles behind them? --> <!-- Example: PR templates ensure PR reviewers, observers, and future iterators are in context about the evolution of repos. --> ## Checklist <!-- Check your PR fulfills the following items. --> <!-- For draft PRs check the boxes as you complete them. --> - [ ] PR title corresponds to the body of PR (we generate changelog entries from PRs). - [ ] Tests for the changes have been added / updated. - [ ] Documentation comments have been added / updated. - [ ] Code has been formatted via `zk fmt` and `zk lint`. - [ ] Spellcheck has been run via `zk spellcheck`. - [ ] Linkcheck has been run via `zk linkcheck`. --------- Signed-off-by: Danil <[email protected]>
- Loading branch information
1 parent
b00c052
commit cfc88a8
Showing
5 changed files
with
44 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,35 @@ | ||
{ | ||
"name": "ts-integration", | ||
"version": "0.1.0", | ||
"license": "MIT", | ||
"private": true, | ||
"scripts": { | ||
"test": "zk f jest --forceExit --testTimeout 120000", | ||
"long-running-test": "zk f jest", | ||
"fee-test": "RUN_FEE_TEST=1 zk f jest -- fees.test.ts", | ||
"api-test": "zk f jest -- api/web3.test.ts api/debug.test.ts", | ||
"contract-verification-test": "zk f jest -- api/contract-verification.test.ts", | ||
"build": "hardhat compile", | ||
"build-yul": "hardhat run scripts/compile-yul.ts" | ||
}, | ||
"devDependencies": { | ||
"@matterlabs/hardhat-zksync-deploy": "^0.6.1", | ||
"@matterlabs/hardhat-zksync-solc": "0.4.2", | ||
"@matterlabs/hardhat-zksync-vyper": "^1.0.0", | ||
"@nomiclabs/hardhat-vyper": "^3.0.5", | ||
"@types/jest": "^29.0.3", | ||
"@types/node": "^18.19.15", | ||
"@types/node-fetch": "^2.5.7", | ||
"chalk": "^4.0.0", | ||
"ethereumjs-abi": "^0.6.8", | ||
"ethers": "~5.7.0", | ||
"hardhat": "=2.16.0", | ||
"jest": "^29.0.3", | ||
"jest-matcher-utils": "^29.0.3", | ||
"node-fetch": "^2.6.1", | ||
"ts-jest": "^29.0.1", | ||
"ts-node": "^10.1.0", | ||
"typescript": "^4.3.5", | ||
"zksync-web3": "^0.15.5" | ||
} | ||
"name": "ts-integration", | ||
"version": "0.1.0", | ||
"license": "MIT", | ||
"private": true, | ||
"scripts": { | ||
"test": "zk f jest --forceExit --testTimeout 60000", | ||
"long-running-test": "zk f jest", | ||
"fee-test": "RUN_FEE_TEST=1 zk f jest -- fees.test.ts", | ||
"api-test": "zk f jest -- api/web3.test.ts api/debug.test.ts", | ||
"contract-verification-test": "zk f jest -- api/contract-verification.test.ts", | ||
"build": "hardhat compile", | ||
"build-yul": "hardhat run scripts/compile-yul.ts" | ||
}, | ||
"devDependencies": { | ||
"@matterlabs/hardhat-zksync-deploy": "^0.6.1", | ||
"@matterlabs/hardhat-zksync-solc": "0.4.2", | ||
"@matterlabs/hardhat-zksync-vyper": "^1.0.0", | ||
"@nomiclabs/hardhat-vyper": "^3.0.5", | ||
"@types/jest": "^29.0.3", | ||
"@types/node": "^18.19.15", | ||
"@types/node-fetch": "^2.5.7", | ||
"chalk": "^4.0.0", | ||
"ethereumjs-abi": "^0.6.8", | ||
"ethers": "~5.7.0", | ||
"hardhat": "=2.16.0", | ||
"jest": "^29.0.3", | ||
"jest-matcher-utils": "^29.0.3", | ||
"node-fetch": "^2.6.1", | ||
"ts-jest": "^29.0.1", | ||
"ts-node": "^10.1.0", | ||
"typescript": "^4.3.5", | ||
"zksync-web3": "^0.15.5" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters