Auto fix standard style voilations

This commit is contained in:
Tyler Long
2017-04-11 22:14:25 +08:00
parent d46fda537d
commit 620f3e8734
66 changed files with 45436 additions and 45726 deletions

View File

@@ -1,27 +1,27 @@
/**
* Created by knut on 14-11-03.
*/
var tests = [];
var tests = []
for (var file in window.__karma__.files) {
if (window.__karma__.files.hasOwnProperty(file)) {
if (/spec\.js$/.test(file)) {
var file2 = file.substr(10,file.length-13);
console.log('Testing with: '+file2);
if (window.__karma__.files.hasOwnProperty(file)) {
if (/spec\.js$/.test(file)) {
var file2 = file.substr(10, file.length - 13)
console.log('Testing with: ' + file2)
tests.push(file2);
tests.push(file2)
//
}
}
}
}
//tests.push('parser/flow.spec');
// tests.push('parser/flow.spec');
require.config({
// Karma serves files from '/base'
baseUrl: '/base/src',
baseUrl: '/base/src',
// ask Require.js to load these files (all our tests)
deps: tests,
deps: tests,
// start test run, once Require.js is done
callback: window.__karma__.start
});
callback: window.__karma__.start
})