在阅读了关于Wallaby on a build server (CI)主题的答案和评论之后,我接受了wallabyjs目前还没有为ci场景做好准备。好的,但是我仍在质疑自己如何处理典型场景,一个人在客户端上使用wallabyjs,在ci系统上使用karma(或另一个测试运行器)。特别是在使用requirejs时。正如here解释的那样,有一个
test-main.js - 为测试配置require.js
使用wallabyjs这看起来或多或少像
// delaying wallaby automatic start
wallaby.delayStart();
requirejs.config({
baseUrl: '/src',
paths: {
'jquery': '../lib/jquery',
'underscore': '../lib/underscore'
},
shim: {
'underscore': {
exports: '_'
}
}
});
require(wallaby.tests, function () {
wallaby.start();
});
使用业力解释here,它看起来或多或少像这样
var TEST_REGEXP = /(spec|test)\.js$/i;
var allTestFiles = [];
// Get a list of all the test files to include
Object.keys(window.__karma__.files).forEach(function(file) {
if (TEST_REGEXP.test(file)) {
// Normalize paths to RequireJS module names.
// If you require sub-dependencies of test files to be loaded as-is (requiring file extension)
// then do not normalize the paths
var normalizedTestModule = file.replace(/^\/base\/|\.js$/g, '');
allTestFiles.push(normalizedTestModule);
}
});
require.config({
// Karma serves files under /base, which is the basePath from your config file
baseUrl: '/base/src',
// example of using a couple path translations (paths), to allow us to refer to different library dependencies, without using relative paths
paths: {
'jquery': '../lib/jquery',
'underscore': '../lib/underscore',
},
// example of using a shim, to load non AMD libraries (such as underscore)
shim: {
'underscore': {
exports: '_'
}
},
// dynamically load all test files
deps: allTestFiles,
// we have to kickoff jasmine, as it is asynchronous
callback: window.__karma__.start
});
我必须维护两个文件吗?是否需要某种条件构建?有没有人遇到这种情况?
非常感谢。
答案 0 :(得分:1)
您可以将这两个文件合并为一个以重用公共部分,并添加一些逻辑以根据当前的运行符执行某些位。
INTERSECT