diff options
Diffstat (limited to 'test/integration/helpers.js')
-rw-r--r-- | test/integration/helpers.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/integration/helpers.js b/test/integration/helpers.js new file mode 100644 index 000000000..95c36017a --- /dev/null +++ b/test/integration/helpers.js @@ -0,0 +1,7 @@ +function wait() { + return new Promise(function(resolve, reject) { + setTimeout(function() { + resolve() + }, 500) + }) +} |