1
0
mirror of https://github.com/kremalicious/portfolio.git synced 2024-06-25 18:56:39 +02:00

tweak test command

This commit is contained in:
Matthias Kretschmann 2021-02-06 14:46:53 +01:00
parent 820baca23f
commit a006a2df98
Signed by: m
GPG Key ID: 606EEEF3C479A91F

View File

@ -14,8 +14,8 @@
"lint:css": "stylelint ./src/**/*.{css,scss}",
"lint": "npm run lint:js && npm run lint:css",
"format": "prettier --write 'src/**/*.{js,jsx,css,scss}'",
"test": "npm run lint && jest --coverage --silent -c tests/jest.config.js",
"test:watch": "npm run lint && jest --coverage --watch -c tests/jest.config.js",
"test": "NODE_ENV=test npm run lint && jest --coverage --silent -c tests/jest.config.js",
"test:watch": "NODE_ENV=test npm run lint && jest --coverage --watch -c tests/jest.config.js",
"deploy:s3": "./scripts/deploy-s3.sh",
"new": "babel-node ./scripts/new.js"
},