aboutsummaryrefslogtreecommitdiffstats
path: root/test/integration/helpers.js
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2016-12-01 06:43:18 +0800
committerDan Finlay <dan@danfinlay.com>2016-12-01 06:58:40 +0800
commit549bbfd05f0507a33c9df95111a71b0097f3b355 (patch)
tree43f36421ebcdec2d3a3198d867787d507724ab87 /test/integration/helpers.js
parent5af41573638e438f4af496afe18d9a01f89c7733 (diff)
downloadtangerine-wallet-browser-549bbfd05f0507a33c9df95111a71b0097f3b355.tar.gz
tangerine-wallet-browser-549bbfd05f0507a33c9df95111a71b0097f3b355.tar.zst
tangerine-wallet-browser-549bbfd05f0507a33c9df95111a71b0097f3b355.zip
Made integration test create a first vault
Diffstat (limited to 'test/integration/helpers.js')
-rw-r--r--test/integration/helpers.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/integration/helpers.js b/test/integration/helpers.js
index 95c36017a..40f78d701 100644
--- a/test/integration/helpers.js
+++ b/test/integration/helpers.js
@@ -1,7 +1,7 @@
-function wait() {
+function wait(time) {
return new Promise(function(resolve, reject) {
setTimeout(function() {
resolve()
- }, 500)
+ }, time || 500)
})
}