Separate test and lint steps

This commit is contained in:
Ryan Ahearn
2022-10-27 11:10:13 -04:00
parent f9cacac204
commit 98b772f959
3 changed files with 19 additions and 3 deletions

View File

@@ -6,7 +6,8 @@
"node": ">=10.15.3"
},
"scripts": {
"test": "gulp lint && jest --config tests/javascripts/jest.config.js tests/javascripts",
"lint": "gulp lint",
"test": "jest --config tests/javascripts/jest.config.js tests/javascripts",
"test-watch": "jest --watch --config tests/javascripts/jest.config.js tests/javascripts",
"build": "gulp",
"watch": "gulp watch",