From 57cb53d9277907e815cee4a95644e2365c9e1ee3 Mon Sep 17 00:00:00 2001 From: Turadg Aleahmad Date: Mon, 18 Sep 2023 19:33:11 -0700 Subject: [PATCH] test: fix bench config https://github.com/Agoric/agoric-sdk/pull/8313 changed supports module to .ts --- packages/boot/ava.bench.config.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/packages/boot/ava.bench.config.js b/packages/boot/ava.bench.config.js index be11bf2da49..be8e55650c6 100644 --- a/packages/boot/ava.bench.config.js +++ b/packages/boot/ava.bench.config.js @@ -1,5 +1,12 @@ +// NB: keep in sync with package.json export default { + extensions: { + js: true, + ts: 'module', + }, files: ['test/**/bench-*.js'], + nodeArguments: ['--loader=tsx', '--no-warnings'], + require: ['@endo/init/debug.js'], timeout: '20m', workerThreads: false, };