嗨,我在运行jasmine时遇到了问题,因为它找不到规范文件。
我的根文件夹中的jasmine.json是这样的
```javascript{
"spec_dir":“测试”,
"spec_files":[
"integration-testing/*.spec.js"],
"helpers":[
"helpers/**/*.js"],
"stopSpecOnExpectationFailure":false,
"random":false
}
我的文件夹结构是这样的

发布于 2017-04-26 08:39:41
尝试对规范文件执行"**/*[sS]pec.js",并根据文件中的“s”使用大写或小写的“s”。
https://stackoverflow.com/questions/43604237
复制相似问题