node.js – 执行两次Jasmine-node测试

我的茉莉花节点测试执行了两次.

我从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

你有什么想法吗?

最佳答案 全部归功于
1.618.他在这里回答了这个问题:
grunt jasmine-node tests are running twice

这看起来像一些越野行为.快速解决方法是在Gruntfile中配置jasmine_node,如下所示:

jasmine_node: {
    options: {
        forceExit: true,
        host: 'http://localhost:' + port + '/',
        match: '.',
        matchall: false,
        extensions: 'js',
        specNameMatcher: '[sS]pec'
    },
    all: []
}

关键是all参数. grunt插件正在寻找名称中带有spec的文件.出于某种原因,它在spec /目录和其他地方查找.如果指定spec目录,则会将其文件拾取两次.如果您没有指定,它只会被设置一次,但是您不能将spec放入任何非测试文件名中.

点赞