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