diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2019-04-06 13:43:04 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-06 13:43:04 +0000 |
commit | 859d0372b5bb7297a0b8ed37a559d88a425f3799 (patch) | |
tree | 293adc0e1963b4ded2760107aa69d1f793751114 /e2e/karma-delay.js | |
parent | d37e0b92d39fe2f721bfe3330395043eb55861f3 (diff) | |
parent | b604a942a84d7c5d54029b48ae698d15ffe4f5ac (diff) |
Merge pull request #559 from ueokande/lanthan-integration-test
Replace E2E tests with lanthan
Diffstat (limited to 'e2e/karma-delay.js')
-rw-r--r-- | e2e/karma-delay.js | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/e2e/karma-delay.js b/e2e/karma-delay.js deleted file mode 100644 index 7d18c4a..0000000 --- a/e2e/karma-delay.js +++ /dev/null @@ -1,10 +0,0 @@ -'use strict'; - -window.__karma__.start = (function(start){ -return function(){ - var args = arguments - setTimeout(() => { - start(args) - }, 3000); -}; -}(window.__karma__.start)); |