从业力传递茉莉花单元测试的论据?

时间:2015-12-13 06:14:35

标签: jasmine gulp karma-runner

我有一些单元测试,我正在使用服务器路径来点击我的模拟存根。目前我将URL添加到每个测试中。我真的想将这个URL从我的gulp任务传递到单元测试中。这可能吗?

  require('.path_to_my_karma').apply(null, [].concat(args).concat([**host_url**]));

1 个答案:

答案 0 :(得分:0)

当您运行karma时,您可以传递自定义选项;

karma start --my-custom-url http://google.com

然后在您的karma.conf.js中,您可以像这样访问它们;

module.exports = function(config) {
  console.log('URL passed in from command line is %s', config.myCustomUrl);
  config.set({
    // ...
  });
};