From 335967aec5411504e398050cb71016587bc4cbf5 Mon Sep 17 00:00:00 2001 From: acolytec3 <17355484+acolytec3@users.noreply.github.com> Date: Fri, 13 Sep 2024 22:18:33 -0400 Subject: [PATCH] Skip t8n tests in browser --- packages/vm/vitest.config.browser.mts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/vm/vitest.config.browser.mts b/packages/vm/vitest.config.browser.mts index a3b19fe16a..73613ccbc2 100644 --- a/packages/vm/vitest.config.browser.mts +++ b/packages/vm/vitest.config.browser.mts @@ -11,7 +11,9 @@ export default mergeConfig( // path.resolve is not a function 'test/api/tester/tester.config.spec.ts', // Cannot read properties of undefined (reading 'pedersen_hash') - 'test/api/EIPs/eip-6800-verkle.spec.ts' + 'test/api/EIPs/eip-6800-verkle.spec.ts', + // Uses NodeJS builtins and we don't need to fill tests in browser anyway + 'test/api/t8ntool/t8ntool.spec.ts' ], }, }