summaryrefslogtreecommitdiffstats
path: root/package.json
diff options
context:
space:
mode:
authorMarco <marcoambrosini@icloud.com>2023-03-29 14:53:31 +0100
committerMarco <marcoambrosini@icloud.com>2023-03-29 14:53:31 +0100
commit292251d667c737b331354964bd07e3d71e80e036 (patch)
tree83988f570742ef3681aba0b4d4009c0cf5dabcdd /package.json
parente266f44ce9f3f808b2acaef84167101eec224dbe (diff)
Fix test scripts
Signed-off-by: Marco <marcoambrosini@icloud.com>
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 712400a33..319920e06 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 --watchAll",
"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",