Skip to content

Commit 7592482

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

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-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
})

packages/vm/vitest.config.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,8 @@ export default mergeConfig(
99
optimizeDeps: {
1010
exclude: ['kzg-wasm'],
1111
},
12+
test: {
13+
exclude: ['test/tester/stateRunner.spec.ts'],
14+
},
1215
}),
1316
)

0 commit comments

Comments
 (0)