加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
karma.conf.js 827 Bytes
一键复制 编辑 原始数据 按行查看 历史
胡晋 提交于 2014-09-18 13:42 . Signed-off-by: Dio zqjimlove@gmail.com
module.exports = function(config){
config.set({
basePath : './',
files : [
'http://cdn.staticfile.org/angular.js/1.2.18/angular.min.js',
'http://cdnjs.cloudflare.com/ajax/libs/angular.js/1.2.20/angular-mocks.js',
'http://ueditor.baidu.com/ueditor/ueditor.config.js',
'http://ueditor.baidu.com/ueditor/ueditor.all.js',
'http://cdn.staticfile.org/jquery/2.1.1-rc2/jquery.js',
'dist/angular-ueditor.js',
'tests/**/*.js'
],
autoWatch : true,
frameworks: ['jasmine'],
browsers : ['Chrome'],
plugins : [
'karma-chrome-launcher',
'karma-firefox-launcher',
'karma-jasmine',
'karma-junit-reporter'
],
junitReporter : {
outputFile: 'test_out/unit.xml',
suite: 'unit'
}
});
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化