mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-28 20:22:53 +00:00
test config
This commit is contained in:
parent
0e14d3d6e8
commit
ba4b976e80
24
package.json
24
package.json
@ -10,10 +10,10 @@
|
|||||||
"install": "echo \"Installing vendor files ...\n\" && cd vendor && npm install --loglevel=error",
|
"install": "echo \"Installing vendor files ...\n\" && cd vendor && npm install --loglevel=error",
|
||||||
"install-fonts": "echo \"Installing fonts ...\n\" && cd fonts && npm install --loglevel=error",
|
"install-fonts": "echo \"Installing fonts ...\n\" && cd fonts && npm install --loglevel=error",
|
||||||
"postinstall": "npm run install-fonts && echo \"MagicMirror installation finished successfully! \n\"",
|
"postinstall": "npm run install-fonts && echo \"MagicMirror installation finished successfully! \n\"",
|
||||||
"test": "NODE_ENV=test mocha tests --recursive",
|
"test": "NODE_ENV=test jest -i",
|
||||||
"test:coverage": "NODE_ENV=test nyc --reporter=lcov --reporter=text mocha tests --recursive --timeout=3000",
|
"test:coverage": "NODE_ENV=test nyc --reporter=lcov --reporter=text jest -i",
|
||||||
"test:e2e": "NODE_ENV=test jest --testMatch **/tests/e2e/**/*",
|
"test:e2e": "NODE_ENV=test jest --selectProjects e2e -i",
|
||||||
"test:unit": "NODE_ENV=test jest --testMatch **/tests/unit/**/*",
|
"test:unit": "NODE_ENV=test jest --selectProjects unit",
|
||||||
"test:prettier": "prettier . --check",
|
"test:prettier": "prettier . --check",
|
||||||
"test:js": "eslint js/**/*.js modules/default/**/*.js clientonly/*.js serveronly/*.js translations/*.js vendor/*.js tests/**/*.js config/* --config .eslintrc.json --quiet",
|
"test:js": "eslint js/**/*.js modules/default/**/*.js clientonly/*.js serveronly/*.js translations/*.js vendor/*.js tests/**/*.js config/* --config .eslintrc.json --quiet",
|
||||||
"test:css": "stylelint css/main.css modules/default/**/*.css --config .stylelintrc.json",
|
"test:css": "stylelint css/main.css modules/default/**/*.css --config .stylelintrc.json",
|
||||||
@ -91,13 +91,23 @@
|
|||||||
"node": ">=12"
|
"node": ">=12"
|
||||||
},
|
},
|
||||||
"jest": {
|
"jest": {
|
||||||
|
"verbose": true,
|
||||||
|
"projects": [
|
||||||
|
{
|
||||||
|
"displayName": "unit",
|
||||||
|
"testMatch": ["**/tests/unit/**/*.[jt]s?(x)"],
|
||||||
"moduleNameMapper": {
|
"moduleNameMapper": {
|
||||||
"node_helper": "<rootDir>/js/node_helper.js",
|
"node_helper": "<rootDir>/js/node_helper.js",
|
||||||
// "logger": "<rootDir>/js/logger.js", <-- only for unit tests, not for e2e
|
"logger": "<rootDir>/js/logger.js",
|
||||||
// replace require("chai").expect with expect from jest, see e2e/env_spec.js
|
|
||||||
// https://medium.com/swlh/6-ways-to-run-jest-test-cases-silently-67d2fead8c11
|
|
||||||
"moment-timezone": "<rootDir>/node_modules/moment-timezone/moment-timezone.js",
|
"moment-timezone": "<rootDir>/node_modules/moment-timezone/moment-timezone.js",
|
||||||
"moment": "<rootDir>/node_modules/moment/moment.js"
|
"moment": "<rootDir>/node_modules/moment/moment.js"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"displayName": "e2e",
|
||||||
|
"testMatch": ["**/tests/e2e/**/*.[jt]s?(x)"],
|
||||||
|
"testPathIgnorePatterns": ["<rootDir>/tests/e2e/modules/mocks", "<rootDir>/tests/e2e/global-setup.js"]
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user