-
Notifications
You must be signed in to change notification settings - Fork 202
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test(evm): e2e tests for eth_* endpoints (#2006)
* test(evm): e2e tests for eth_* endpoints * test(evm): another series of e2e tests * chore: cleanup --------- Co-authored-by: Kevin Yang <5478483+k-yang@users.noreply.github.com>
- Loading branch information
1 parent
1f1e76b
commit 924f9c4
Showing
11 changed files
with
5,166 additions
and
1,921 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,6 +1,9 @@ | ||
module.exports = { | ||
testEnvironment: 'node', | ||
testMatch: ['**/test/**/*.test.js'], | ||
transform: { | ||
'^.+\\.(ts|tsx)?$': 'ts-jest', | ||
}, | ||
testMatch: ['**/test/**/*.test.ts'], | ||
verbose: true, | ||
"maxWorkers": 1 | ||
}; |
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 |
---|---|---|
|
@@ -29,7 +29,7 @@ gen-types: | |
|
||
# Runs the E2E tests | ||
test: | ||
bun test | ||
npm test | ||
|
||
# Format | ||
fmt: | ||
|
Oops, something went wrong.