0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

Renamed package-json tests to use .test.js pattern

- all our modules use .test.js instead of the _spec.js pattern we use in Ghost
- updated for consistency
This commit is contained in:
Hannah Wolfe 2021-06-09 10:10:59 +01:00
parent 202e0a0bb6
commit f2b1d37cd4
4 changed files with 1 additions and 1 deletions

View file

@ -7,7 +7,7 @@
"main": "index.js",
"scripts": {
"dev": "echo \"Implement me!\"",
"test": "NODE_ENV=testing c8 --check-coverage mocha './test/**/*_spec.js'",
"test": "NODE_ENV=testing c8 --check-coverage mocha './test/**/*.test.js'",
"lint": "eslint . --ext .js --cache",
"posttest": "yarn lint"
},