first webextension test
This commit is contained in:
parent
bb5b6d367c
commit
f6f64297aa
10 changed files with 149 additions and 0 deletions
10
e2e/karma-delay.js
Normal file
10
e2e/karma-delay.js
Normal file
|
@ -0,0 +1,10 @@
|
|||
'use strict';
|
||||
|
||||
window.__karma__.start = (function(start){
|
||||
return function(){
|
||||
var args = arguments
|
||||
setTimeout(() => {
|
||||
start(args)
|
||||
}, 1000);
|
||||
};
|
||||
}(window.__karma__.start));
|
Reference in a new issue