From 58ae64fe961ef0fbf0b32d67667f6006befe0fa6 Mon Sep 17 00:00:00 2001 From: Gavan Lamb Date: Sat, 15 Jun 2024 13:09:02 +1000 Subject: [PATCH] feat(GH-8): Remove --ci from jest test run --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ad341e8..2f5d367 100644 --- a/package.json +++ b/package.json @@ -29,7 +29,7 @@ "scripts": { "lint": "npx eslint . -c .eslintrc.yml", "package": "npx ncc build src/index.ts -o dist --source-map --license licenses.txt", - "test": "npx jest --json --outputFile=./test-results/summary.json --ci", + "test": "npx jest --json --outputFile=./test-results/summary.json", "all": "npm run lint && npm run test && npm run package" }, "license": "MIT",