模块名称"点击"打破业力测试

时间:2015-10-29 10:22:49

标签: angularjs karma-runner

上午,

我在虚拟应用程序上设置了一套新的Karma测试,但遇到了一些障碍。我已经初始化了karma.conf.js文件,但是当我运行karma时,我收到以下错误:

Uncaught Error: Module name "tap" has not been loaded yet for context:     
_. Use require([])
http://requirejs.org/docs/errors.html#notloaded
at 
/Users/Andrew/sites/mine/FlowMyAngular/node_modules/requirejs/require.js:140

我去了requirejs网站并解释了以下内容:

  

当有一个要求('名称')来电时会发生这种情况,但这个名称会出现这种情况。模块尚未加载。

     

如果错误消息包含Use require([]),那么它是顶级的   需要调用(不是在define()调用中的require调用)   使用异步,回调版本的require来加载代码

好的 - 但问题是我无法找到代码中需要采取行动的地方 - 项目范围内的搜索没有返回任何内容。我所知道的关于tap的是它是一个可以用于业力从磁带输出TAP的框架。

是否有其他人遇到此错误或知道如何绕过它?这是我的karma.conf.js文件:

// Karma configuration
// Generated on Thu Oct 29 2015 09:59:59 GMT+0000 (GMT)

module.exports = function(config) {
  config.set({

    // base path that will be used to resolve all patterns (eg. files, exclude)
    basePath: '',


    // frameworks to use
    // available frameworks: https://npmjs.org/browse/keyword/karma-adapter
    frameworks: ['jasmine'],


    // list of files / patterns to load in the browser
    files: [
      'node_modules/requirejs/require.js',
      '**/*.test.js',
    ],


    // list of files to exclude
    exclude: [
    ],


    // preprocess matching files before serving them to the browser
    // available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
    preprocessors: {
    },


    // test results reporter to use
    // possible values: 'dots', 'progress'
    // available reporters: https://npmjs.org/browse/keyword/karma-reporter
    reporters: ['progress'],


    // web server port
    port: 9876,


    // enable / disable colors in the output (reporters and logs)
    colors: true,


    // level of logging
    // possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
    logLevel: config.LOG_INFO,


    // enable / disable watching file and executing tests whenever any file changes
    autoWatch: true,


    // start these browsers
    // available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
    browsers: ['Chrome'],


    // Continuous Integration mode
    // if true, Karma captures browsers, runs the tests and exits
    singleRun: false,

    // Concurrency level
    // how many browser should be started simultanous
    concurrency: Infinity
  })
}

1 个答案:

答案 0 :(得分:3)

由于我在karma.conf.js文件中为测试位置设置了什么,所以实际发生了问题。这一行:

'**/*.test.js',

基本上是在运行业力导致上述错误时尝试引入不需要/不需要的文件。对此的一个解决方案可能是将所有单元测试移动到一个文件夹中,但是当涉及到项目结构时,这将违背最佳实践。

为了解决这个问题,我将所有测试与他们正在测试的代码一起保存,并将行更改为:

'app/js/**/*.test.js'

完成工作。