forked from angular/di.js
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtest-main.js
More file actions
34 lines (27 loc) · 836 Bytes
/
test-main.js
File metadata and controls
34 lines (27 loc) · 836 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
var allTestFiles = [];
var TEST_REGEXP = /\.spec\.js$/;
var pathToModule = function(path) {
return path.replace(/^\/base\//, '').replace(/\.js$/, '');
};
Object.keys(window.__karma__.files).forEach(function(file) {
if (TEST_REGEXP.test(file)) {
// Normalize paths to RequireJS module names.
allTestFiles.push(pathToModule(file));
}
});
require.config({
// Karma serves files under /base, which is the basePath from your config file
baseUrl: '/base',
paths: {
'rtts-assert': './node_modules/rtts-assert/src/assert'
},
map: {
'*': {
'di': 'src/index'
}
},
// Dynamically load all test files and ES6 polyfill.
deps: allTestFiles.concat(['node_modules/es6-shim/es6-shim', 'test/matchers']),
// we have to kickoff jasmine, as it is asynchronous
callback: window.__karma__.start
});