Skip to content

Commit

Permalink
Fix blackbox test (#6873)
Browse files Browse the repository at this point in the history
* Fix blackbox test

* revert
  • Loading branch information
avkos authored Mar 8, 2024
1 parent a7bbd7a commit 9e03fd7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 12 deletions.
7 changes: 1 addition & 6 deletions packages/web3/test/cjs_black_box/jest.config.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,10 @@
/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */
module.exports = {
globals: {
'ts-jest': {
tsconfig: '../config/tsconfig.cjs.json',
},
},
transform: {
'^.+\\.(ts|tsx)$': [
'ts-jest',
{
tsconfig: './test/tsconfig.json',
tsconfig: '../config/tsconfig.cjs.json',
},
],
},
Expand Down
7 changes: 1 addition & 6 deletions packages/web3/test/esm_black_box/jest.config.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,10 @@
/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */
export default {
globals: {
'ts-jest': {
tsconfig: '../config/tsconfig.esm.json',
},
},
transform: {
'^.+\\.(ts|tsx)$': [
'ts-jest',
{
tsconfig: './test/tsconfig.json',
tsconfig: '../config/tsconfig.esm.json',
},
],
},
Expand Down

1 comment on commit 9e03fd7

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Benchmark

Benchmark suite Current: 9e03fd7 Previous: 6c075db Ratio
processingTx 9315 ops/sec (±4.09%) 9301 ops/sec (±4.81%) 1.00
processingContractDeploy 36968 ops/sec (±7.75%) 39129 ops/sec (±7.62%) 1.06
processingContractMethodSend 18116 ops/sec (±7.45%) 19443 ops/sec (±5.19%) 1.07
processingContractMethodCall 38691 ops/sec (±6.15%) 38971 ops/sec (±6.34%) 1.01
abiEncode 43557 ops/sec (±7.25%) 44252 ops/sec (±6.92%) 1.02
abiDecode 30327 ops/sec (±7.48%) 30419 ops/sec (±8.89%) 1.00
sign 1633 ops/sec (±1.03%) 1656 ops/sec (±4.08%) 1.01
verify 368 ops/sec (±0.88%) 373 ops/sec (±0.78%) 1.01

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.