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