我正在尝试将配置文件传递给Jest,以便仅从给定目录运行测试。
根据文档,您可以使用config.testPathDirs
:https://facebook.github.io/jest/docs/api.html#config-testpathdirs-array-string,然后拨打jest --config=<config-file>
。
不幸的是,文档中没有包含配置文件外观的任何描述。
我在jest-config.js
文件中尝试了这两个选项:
testPathDirs = ['coredata/src'];
和
config.testPathDirs(['coredata/src']);
并跑了:
$ jest --config=jest-config.js
...但我收到了这种错误:
$ jest --config=jest-config.js
Using Jest CLI v0.4.0
Failed with unexpected error.
/Users/carles/dev/azazo/coredata/node_modules/jest-cli/src/jest.js:179
throw error;
^
SyntaxError: Unexpected token c
at Object.parse (native)
at /Users/carles/dev/azazo/coredata/node_modules/jest-cli/src/lib/utils.js:291:23
at _fulfilled (/Users/carles/dev/azazo/coredata/node_modules/jest-cli/node_modules/q/q.js:798:54)
at self.promiseDispatch.done (/Users/carles/dev/azazo/coredata/node_modules/jest-cli/node_modules/q/q.js:827:30)
at Promise.promise.promiseDispatch (/Users/carles/dev/azazo/coredata/node_modules/jest-cli/node_modules/q/q.js:760:13)
at /Users/carles/dev/azazo/coredata/node_modules/jest-cli/node_modules/q/q.js:574:44
at flush (/Users/carles/dev/azazo/coredata/node_modules/jest-cli/node_modules/q/q.js:108:17)
at process._tickCallback (node.js:419:13)
答案 0 :(得分:32)
我发现配置文件是JSON。
{
"testPathDirs": ["coredata/src"]
}
不幸的是,我在文档中找不到任何关于此的提示。
答案 1 :(得分:13)
在我看来,您可以直接在package.json
内配置好友,请参阅https://github.com/shidhincr/react-jest-gulp-jspm-seed/blob/master/package.json。
{
"name": "react-jest-gulp-seed",
"version": "1.0.0",
"description": "Seed for React Jest Gulp Project",
"main": "index.js",
"scripts": {
"test": "jest",
"postinstall": "jspm install"
},
"jest": {
"scriptPreprocessor": "./preprocessor.js",
"testPathIgnorePatterns": [
"/node_modules/",
"/jspm_packages"
],
"unmockedModulePathPatterns": [
"./node_modules/react"
]
},
"author": "Shidhin CR <shidhincr@gmail.com> (http://www.undefinednull.com/)",
"license": "ISC",
"dependencies": {
"del": "^1.1.1",
"gulp": "^3.8.11",
"gulp-filter": "^2.0.2",
"gulp-load-plugins": "^0.10.0",
"gulp-react": "^3.0.1",
"gulp-shell": "^0.4.1",
"harmonize": "^1.4.1",
"jest-cli": "^0.4.1",
"jspm": "^0.15.5",
"react": "^0.13.2",
"react-tools": "^0.13.2",
"run-sequence": "^1.1.0"
},
"devDependencies": {
"browser-sync": "^2.7.1",
"gulp": "^3.8.11"
},
"jspm": {
"directories": {},
"dependencies": {
"react": "npm:react@^0.13.2"
},
"devDependencies": {
"babel": "npm:babel-core@^5.1.13",
"babel-runtime": "npm:babel-runtime@^5.1.13",
"core-js": "npm:core-js@^0.9.4"
}
}
}
答案 2 :(得分:5)
更新了文档以解释配置。以下是寻找更多信息的人的链接:
https://facebook.github.io/jest/docs/en/configuration.html#content
要点:
如果使用--config <path/to/json>
将jest指向您的配置json文件,则只将JSON信息放在文件中,而不使用&#34; jest&#34;关键字。
// config.json at <path/to/json>
{
"verbose": true
}
如果您想使用package.json配置jest,请添加&#34; jest&#34;键然后你的配置。
// package.json
{
"name": "packageName",
"version": "1.0.0",
"jest": {
"verbose": true
}
}
答案 3 :(得分:4)
截至2018年10月5日,我能够轻松设置一个jest配置文件,而不需要它采用JSON格式。
我的package.json脚本部分:
"scripts": {
"start": "node server.js",
"dev": "webpack-dev-server --hot --inline",
"test": "jest --config ./jest-config.js",
"build": "webpack",
"postinstall": "webpack"
}
我决定将jest-config文件保存在package.json旁边的根路径中,这就是它所指向的位置,但你可以把它放在任何你想要的地方。这是配置文件,虽然有点简短:
module.exports = {
verbose: true,
setupTestFrameworkScriptFile: "./enzyme.js",
roots: [
"../__tests__"
],
modulePaths: [
"./__stubs__"
],
moduleNameMapper: {
".scss$": "scss-stub.js"
}
}
“配置Jest”部分(link here)中的Jest文档说您可以使用module.exports对象创建它。它们包括一个警告,“请记住,最终的配置必须是JSON可序列化的”,这增加了混乱。 “令人愉快的Javascript测试!”哈!
P.S。配置中的roots属性告诉Jest在哪里查找所有测试。认为这可能有所帮助。
答案 4 :(得分:4)
对于JEST V20 +:
{
"roots": ["__tests__/"]
}
对于第20版,如果使用testPathDirs,则会收到以下警告:
弃用警告:
选项“testPathDirs”被“roots”取代。
Jest现在将您当前的配置视为:{ “根”:[“测试 / unit /”]}
请更新您的配置。
答案 5 :(得分:0)
// package.json
{
...
scripts: {
"test": "jest --config ./jest.config.js"
}
...
}