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