我的茉莉花节点测试执行了两次。
我从Grunt任务和Jasmine命令运行那些测试。结果与我的测试运行两次相同。 我的package.json:
{
"name": "test",
"version": "0.0.0",
"dependencies": {
"express": "4.x",
"mongodb": "~2.0"
},
"devDependencies": {
"grunt": "~0.4.5",
"grunt-jasmine-node":"~0.3.1 "
}
}
这是我的Gruntfile.js摘录:
grunt.initConfig({
jasmine_node: {
options: {
forceExit: true,
match: '.',
matchall: true,
extensions: 'js',
specNameMatcher: 'spec'
},
all: ['test/']
}
});
grunt.loadNpmTasks('grunt-jasmine-node');
grunt.registerTask('jasmine', 'jasmine_node');
我的一个测试文件:
describe("Configuration setup", function() {
it("should load local configurations", function(next) {
var config = require('../config')();
expect(config.mode).toBe('local');
next();
});
it("should load staging configurations", function(next) {
var config = require('../config')('staging');
expect(config.mode).toBe('staging');
next();
});
it("should load production configurations", function(next) {
var config = require('../config')('production');
expect(config.mode).toBe('production');
next();
});
});
我有4个断言的2个测试文件
这是我的提示:
grunt jasmine
Running "jasmine_node:all" (jasmine_node) task
........
Finished in 1.781 seconds
8 tests, 8 assertions, 0 failures, 0 skipped
你有什么想法吗?
答案 0 :(得分:2)
归功于1.618。他在这里回答了这个问题:grunt jasmine-node tests are running twice
这看起来像一些越野行为。快速解决方法是在jasmine_node
中配置Gruntfile
,如下所示:
jasmine_node: {
options: {
forceExit: true,
host: 'http://localhost:' + port + '/',
match: '.',
matchall: false,
extensions: 'js',
specNameMatcher: '[sS]pec'
},
all: []
}
键是all
参数。 grunt
插件正在查找名称中包含 spec 的文件。出于某种原因,它会在spec/
目录中找到和。如果指定spec
目录,则会将其文件拾取两次。如果您没有指定,它只会被设置一次,但是您不能将 spec 放在任何非测试文件名中。