Skip to content

Commit e39ed30

Browse files
committed
Exclude state test runner from unit testing
1 parent 211e1eb commit e39ed30

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

packages/vm/vitest.config.browser.mts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ export default mergeConfig(
1313
'test/api/EIPs/eip-6800-verkle.spec.ts',
1414
// Uses NodeJS builtins and we don't need to fill tests in browser anyway
1515
'test/api/t8ntool/t8ntool.spec.ts',
16+
// test runners are ran only in ci
17+
'test/tester/stateRunner.spec.ts'
1618
],
1719
},
1820
}),

packages/vm/vitest.config.coverage.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,6 @@ export default defineConfig({
1313
all: true,
1414
reporter: ['lcov'],
1515
},
16+
exclude: ['test/tester/stateRunner.spec.ts'],
1617
},
1718
})

0 commit comments

Comments
 (0)