1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 01:36:22 +00:00

optimize: npm 'test' script should contain jest tests

This commit is contained in:
hikerpig
2019-10-12 12:19:52 +08:00
committed by Junyoung Choi
parent 1798353eac
commit f2dc8b8020
2 changed files with 2 additions and 2 deletions

View File

@@ -8,7 +8,8 @@
"scripts": {
"start": "electron ./index.js",
"compile": "grunt compile",
"test": "cross-env NODE_ENV=test ava --serial",
"test": "npm run ava && npm run jest",
"ava": "cross-env NODE_ENV=test ava --serial",
"jest": "jest",
"fix": "eslint . --fix",
"lint": "eslint .",