摩卡测试在本地传递,但在Travis CI上失败

时间:2016-01-07 18:28:49

标签: javascript testing mocha travis-ci chai

我正在尝试将测试添加到我正在建设的网站上。我使用Mocha作为我的测试框架和Chai并期望作为我的断言库。我做了一个简单的测试只是为了确保工作正常,然后我创建了一个Gruntfile来运行我的测试。该测试是一个简单的测试,只需验证true === true,它在本地和Travis CI上都有效。现在,即使我没有在测试中改变任何东西,它只在本地工作,但在Travis CI上失败了。它已经过去了,它仍然在当地通过,所以我不知道该改变什么。

我的简单测试代码如下所示:



'use strict';

var chai = require('chai');
var expect = chai.expect;

describe('Test that tests run', function(done) {
  it('should run a test', function(done) {
    expect(true).to.eql(true);
    done();
  });
});




My Gruntfile如下所示:



'use strict';

module.exports = function(grunt) {
  grunt.loadNpmTasks('grunt-simple-mocha');
  grunt.loadNpmTasks('grunt-contrib-jshint');
  grunt.loadNpmTasks('grunt-jscs');

  // initialize Grunt
  grunt.initConfig({
    // create jshint task
    jshint: {
      dev: {
        // tell jshint what check
        src: ['Gruntfile.js', 'server.js', 'js/**/*.js', 'models/**/*.js', 'routes/**/*.js', '!build/**', '!tests/client/bundle.js', '!tests/karma_tests/bundle.js', '!js/imageMapResizer.min.js', '!js/kickstart.js', '!js/form-validator.js'],
        options: {
          node: true,
          globals: {
            describe: true,
            it: true,
            before: true,
            after: true,
            beforeEach: true,
            afterEach: true,
            res: true
          }
        }
      },

      mocha: {
        // tell mocha where test files are
        src: ['tests/**/*.js', '!tests/client/bundle.js', '!tests/karma_tests/bundle.js'],
        options: {
          node: true,
          globals: {
            describe: true,
            it: true,
            before: true,
            after: true,
            beforeEach: true,
            afterEach: true,
            res: true,
            expect: true
          }
        }
      },
      // create jscs task
      jscs: {
        dev: {
          // tell jscs to test the same files as jshint
          src: ['<%= jshint.dev.src %>', '<%= jshint.mocha.src %>']
        }
      }
    },

    // create simplemocha task
    simplemocha: {
      dev: {
        src: ['tests/test_entry.js']
      }
    }
  });

  // register linting task
  grunt.registerTask('lint', ['jshint:dev', 'jshint:mocha' /*, 'jshint:jasmine'*/ ]);
  // register mocha test task
  grunt.registerTask('test', ['simplemocha:dev']);
  grunt.registerTask('default', ['test']);
};
&#13;
&#13;
&#13;

.travis.yml看起来像这样:

&#13;
&#13;
language: node_js
node_js:
  - "4.1"
  - "4.0"
  - "0.12"
  - "0.11"
  - "0.10"
  - "0.8"
  - "0.6"
  - "iojs"
before_install:
  - npm install -g grunt-cli
script: grunt test
&#13;
&#13;
&#13;

如果您有任何疑问或希望查看更多代码,请与我们联系。在此先感谢您的帮助!

1 个答案:

答案 0 :(得分:2)

经过Travis CI的更多挖掘后,我发现有2个问题。第一个是node.js版本0.6和0.8与我的许多节点包不兼容。另一个问题是我包含的2个节点包与linux不兼容,这是OS Travis CI用来运行测试。这些包是node-sqlserver-unofficialmsnodesqlv8

我真的不需要在node.js版本0.6或0.8上工作而且我可以在没有2节点软件包的情况下工作,所以一旦我删除了旧节点版本和软件包,我的测试通过了飞行颜色。