From 8bea4a18973485e1b98d153c45447841f622b701 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Tue, 31 May 2022 22:12:36 +0200 Subject: [PATCH] Fix CI jobs run on windows MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 18a94dda..1f5b9ae2 100644 --- a/package.json +++ b/package.json @@ -63,7 +63,7 @@ "lint:fix": "cross-env TIMING=1 eslint --cache --fix --ext .js,.ts src", "format": "prettier --write .", "import-sort": "npx import-sort-cli --write 'src/**/*.ts{,x}'", - "test": "cross-env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\"}' nyc mocha test/**/*Test.ts", + "test": "cross-env TS_NODE_COMPILER_OPTIONS={\"module\": \"commonjs\"} nyc mocha test/**/*Test.ts", "coverage": "nyc report --reporter=lcov", "coverage:html": "nyc report --reporter=html", "clinic:clean": "clinic clean", -- 2.34.1