diff options
author | kumavis <kumavis@users.noreply.github.com> | 2017-05-05 09:01:46 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-05 09:01:46 +0800 |
commit | f01891fc019b748151365cf7b04cbc26c94f3d06 (patch) | |
tree | c54cdcacb46b91ba5bd22451ec72f8a092495b22 /test/integration/helpers.js | |
parent | a72f50509010a12bf4fb879f2c638a38d2a210d2 (diff) | |
parent | 1e4855fc0e2e89ebe6b50ff8d34762f742433110 (diff) | |
download | tangerine-wallet-browser-f01891fc019b748151365cf7b04cbc26c94f3d06.tar tangerine-wallet-browser-f01891fc019b748151365cf7b04cbc26c94f3d06.tar.gz tangerine-wallet-browser-f01891fc019b748151365cf7b04cbc26c94f3d06.tar.bz2 tangerine-wallet-browser-f01891fc019b748151365cf7b04cbc26c94f3d06.tar.lz tangerine-wallet-browser-f01891fc019b748151365cf7b04cbc26c94f3d06.tar.xz tangerine-wallet-browser-f01891fc019b748151365cf7b04cbc26c94f3d06.tar.zst tangerine-wallet-browser-f01891fc019b748151365cf7b04cbc26c94f3d06.zip |
Merge pull request #1376 from MetaMask/1061-Linting-Tests
1061 linting tests
Diffstat (limited to 'test/integration/helpers.js')
-rw-r--r-- | test/integration/helpers.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/integration/helpers.js b/test/integration/helpers.js index eede103b4..10cd74e64 100644 --- a/test/integration/helpers.js +++ b/test/integration/helpers.js @@ -1,6 +1,6 @@ function wait(time) { - return new Promise(function(resolve, reject) { - setTimeout(function() { + return new Promise(function (resolve, reject) { + setTimeout(function () { resolve() }, time * 3 || 1500) }) |