1

您好,我有一个项目使用 gulp 作为构建框架,并使用 karma 和 jasmine 进行测试。

我正在尝试集成 proxyquireify 来模拟需求,我只是在 karma 配置中添加了 proxyquireify 作为 browserify 插件,因为我正在使用 karma-browserify。

但这会在运行测试时导致错误,在第一行中说“require is undefined”。

我究竟做错了什么?

这是我的业力配置

// Karma 配置 // 生成于 2014 年 11 月 26 日星期三 17:57:28 GMT+0530 (IST)

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: ['browserify', 'jasmine'],


    // list of files / patterns to load in the browser
    files: [
      './components/renderer/**/*.spec.js',
      './components/tracker/**/*.spec.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: {
        './components/**/*.spec.js'   : [ 'browserify' ]
    },

    browserify: {
        debug:true,
        plugin: ['proxyquireify/plugin']
    },


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


    // 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: false,


    // 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
  });
};
4

1 回答 1

1

proxyquireify 通过替换 browserify 提供的 require 函数在内部工作。

在这种情况下,新的替代 require 函数似乎没有暴露在全局范围内。

我浏览了代码,发现 proxyquireify 在 node_modules/proxyquireify/lib/prelude.js 中创建了名为 newRequire 的新 require 函数。

我遇到的问题是 newRequire 函数没有在全局范围内作为 require 函数公开,所以我更改了 node_modules/proxyquireify/lib/prelude.js 以便

// Override the current require with this new one
return newRequire;

变成

// Override the current require with this new one
require = newRequire;

并且 newRequire 已正确暴露于全局范围,并且一切正常。由于每次执行 npm 安装时都会重置此更改,因此在我的案例中创建了一个 gulp 任务,每次运行测试前都会更改此更改,我将添加 gulp 任务以供参考

// Task to modify proxyquireify so that it works properly, there is a bug in the npm library
gulp.task('_patch:proxyquireify', function() {
  gulp.src(['./node_modules/proxyquireify/lib/prelude.js'])
   .pipe(replace(/return newRequire;/g, 'require = newRequire;'))
   .pipe(gulp.dest('./node_modules/proxyquireify/lib'));
});

我在执行测试任务之前运行这个任务,像这样

// Task to run tests
gulp.task('run:test', ['_patch:proxyquireify'], function() {
  //logic to run tests
};

我希望这会有所帮助,谢谢

于 2014-12-10T20:28:44.003 回答