我有一些单元测试,我正在使用服务器路径来点击我的模拟存根。目前我将URL添加到每个测试中。我真的想将这个URL从我的gulp任务传递到单元测试中。这可能吗?
require('.path_to_my_karma').apply(null, [].concat(args).concat([**host_url**]));
答案 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({
// ...
});
};