mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 19:21:34 +08:00
45 lines
1.4 KiB
JavaScript
45 lines
1.4 KiB
JavaScript
jasmine.DEFAULT_TIMEOUT_INTERVAL = 50;
|
|
|
|
// Cancel Karma's synchronous start,
|
|
// we will call `__karma__.start()` later, once all the specs are loaded.
|
|
__karma__.loaded = function() {};
|
|
|
|
System.import('angular2/src/core/dom/browser_adapter').then(function(browser_adapter) {
|
|
browser_adapter.BrowserDomAdapter.makeCurrent();
|
|
}).then(function() {
|
|
return Promise.all(
|
|
Object.keys(window.__karma__.files) // All files served by Karma.
|
|
.filter(onlySpecFiles)
|
|
.map(window.file2moduleName) // Normalize paths to module names.
|
|
.map(function(path) {
|
|
return System.import(path).then(function(module) {
|
|
if (module.hasOwnProperty('run')) {
|
|
module.run();
|
|
} else {
|
|
console.warn('WARNING: Module ' + path + ' does not implement a run() method. No tests run.');
|
|
}
|
|
});
|
|
}))
|
|
})
|
|
.then(function() {
|
|
__karma__.start();
|
|
}, function(error) {
|
|
console.error(error.stack || error);
|
|
__karma__.start();
|
|
});
|
|
|
|
function onlySpecFiles(path) {
|
|
return /\.spec\.js$/.test(path);
|
|
}
|
|
function file2moduleName(filePath) {
|
|
return filePath.replace(/\\/g, '/')
|
|
.replace(/^.*?base\//, '')
|
|
// module name should be relative to `modules` and `tools` folder
|
|
// .replace(/.*\/modules\//, '')
|
|
// .replace(/.*\/tools\//, '')
|
|
// module name should not include `lib`, `web` folders
|
|
// module name should not have a suffix
|
|
// .split('.').pop().join('');
|
|
.replace(/\.js$/, '');
|
|
}
|