From 16a264eb4d03a54fb1421ca79035fc868f80c573 Mon Sep 17 00:00:00 2001 From: Matt Travi Date: Tue, 12 Nov 2024 21:59:39 -0600 Subject: [PATCH] test(integration): stop using the testdouble loader since the flag is no longer needed in supported node versions --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index c6011b0c..68f0df67 100644 --- a/package.json +++ b/package.json @@ -31,7 +31,7 @@ "test": "npm-run-all --print-label build --parallel lint:* --parallel test:*", "test:unit:base": "DEBUG=any vitest run", "test:unit": "cross-env NODE_ENV=test c8 run-s test:unit:base", - "test:integration:base": "NODE_OPTIONS=\"--loader=testdouble --enable-source-maps\" cucumber-js test/integration", + "test:integration:base": "NODE_OPTIONS=--enable-source-maps cucumber-js test/integration", "test:integration:wip": "run-s 'test:integration:base -- --profile wip'", "test:integration:focus": "run-s 'test:integration:base -- --profile focus'", "pretest:integration:base": "run-s build",