* fix: multi lines and spaces issues * fix: eslint operator-linebreak issue * fix: eslint quotes issue * fix: remaining quotes issues * fix: eslint object curly newline issue * fix: eslint object curly spacing issue * fix: eslint brace-style issues * fix: react jsx indent and props issues * fix: eslint trailing spaces issues * fix: eslint linbreak style issue * fix: eslint space unary operator issue * fix: eslint line around directives issue * fix: void and typeof space unary ops issue
13 lines
327 B
JavaScript
13 lines
327 B
JavaScript
/* eslint-env node */
|
|
|
|
// overwrite the loaded method and manually start the karma after a delay
|
|
// Somehow the code initialized in jQuery's onready doesn't get called before karma auto starts
|
|
|
|
'use strict';
|
|
|
|
window.__karma__.loaded = function() {
|
|
setTimeout(function() {
|
|
window.__karma__.start();
|
|
}, 1000);
|
|
};
|