Skip to content

Commit

Permalink
test(evm): e2e tests for eth_* endpoints (#2006)
Browse files Browse the repository at this point in the history
* 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
onikonychev and k-yang authored Aug 23, 2024
1 parent 1f1e76b commit 924f9c4
Show file tree
Hide file tree
Showing 11 changed files with 5,166 additions and 1,921 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [#2001](https://github.com/NibiruChain/nibiru/pull/2001) - refactor(evm): simplify FunToken methods and tests
- [#2003](https://github.com/NibiruChain/nibiru/pull/2003) - fix(evm): fix FunToken conversions between Cosmos and EVM
- [#2004](https://github.com/NibiruChain/nibiru/pull/2004) - refactor(evm)!: replace `HexAddr` with `EIP55Addr`
- [#2006](https://github.com/NibiruChain/nibiru/pull/2006) - test(evm): e2e tests for eth_* endpoints
- [#2008](https://github.com/NibiruChain/nibiru/pull/2008) - refactor(evm): clean up precompile setups
- [#2013](https://github.com/NibiruChain/nibiru/pull/2013) - chore(evm): Set appropriate gas value for the required gas of the "IFunToken.sol" precompile.
- [#2014](https://github.com/NibiruChain/nibiru/pull/2014) - feat(evm): Emit block bloom event in EndBlock hook.
Expand Down
5 changes: 4 additions & 1 deletion e2e/evm/jest.config.js
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
};
2 changes: 1 addition & 1 deletion e2e/evm/justfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ gen-types:

# Runs the E2E tests
test:
bun test
npm test

# Format
fmt:
Expand Down
Loading

0 comments on commit 924f9c4

Please sign in to comment.