aboutsummaryrefslogtreecommitdiffstats
path: root/test/integration/helpers.js
blob: 10cd74e64392db108549d0babb5e89439e238c09 (plain) (blame)
1
2
3
4
5
6
7
function wait(time) {
  return new Promise(function (resolve, reject) {
    setTimeout(function () {
      resolve()
    }, time * 3 || 1500)
  })
}