summaryrefslogtreecommitdiffstats
path: root/package.json
diff options
context:
space:
mode:
authorMarco <marcoambrosini@icloud.com>2023-03-30 11:29:23 +0100
committerGitHub <noreply@github.com>2023-03-30 11:29:23 +0100
commitd25a8d018828f0f8bc4fe256d9839d756655e164 (patch)
treef6fc22072a487e595a86985e43686d07ce46152a /package.json
parent8d817cd16f75775d5de221920886d453cc07f940 (diff)
parent062dec3a3558ebd4de669c7b87f597f61542e224 (diff)
Merge pull request #9207 from nextcloud/bugfix/noid/fix-test-scripts
Fix test scripts
Diffstat (limited to 'package.json')
-rw-r--r--package.json4
1 files changed, 2 insertions, 2 deletions
diff --git a/package.json b/package.json
index d250030a0..08efccf76 100644
--- a/package.json
+++ b/package.json
@@ -8,9 +8,9 @@
"build": "webpack --node-env production --progress",
"dev": "webpack --node-env development --progress",
"watch": "webpack --node-env development --progress --watch",
- "test:unit": "TZ=UTC jest",
+ "test": "TZ=UTC jest",
+ "test:watch": "TZ=UTC jest --watch",
"test:coverage": "TZ=UTC jest --coverage",
- "test:watch": "TZ=UTC jest test:unit --watchAll",
"lint": "eslint --ext .js,.vue src",
"lint:fix": "eslint --ext .js,.vue src --fix",
"stylelint": "stylelint css/*.css css/*.scss src/**/*.scss src/**/*.vue",