forked from antonybudianto/angular-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkarma-test-shim.js
40 lines (34 loc) · 976 Bytes
/
karma-test-shim.js
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
35
36
37
38
39
40
// Turn on full stack traces in errors to help debugging
Error.stackTraceLimit=Infinity;
jasmine.DEFAULT_TIMEOUT_INTERVAL = 1000;
// Cancel Karma's synchronous start,
// we will call `__karma__.start()` later, once all the specs are loaded.
__karma__.loaded = function() {};
System.import('test/test-helpers/setup')
.then(function() {
return Promise.all(
Object.keys(window.__karma__.files)
.filter(onlySpecFiles)
.map(file2moduleName)
.map(importModules)
);
})
.then(function() {
__karma__.start();
}, function(error) {
__karma__.error(error.name + ": " + error.message);
});
// Filter spec files
function onlySpecFiles(path) {
return /\.spec\.js$/.test(path);
}
// Normalize paths to module names.
function file2moduleName(filePath) {
return filePath.replace(/\\/g, '/')
.replace(/^\/base\//, '')
.replace(/\.js/, '');
}
// Import module path
function importModules(path) {
return System.import(path);
}