/** * Move the clock the specified number of `milliseconds`. Any timers within the affected range of time will be called. * * :tick.js const clock = await browser.emulate('clock', { now: new Date(2021, 3, 14) }) console.log(await browser.execute(() => new Date().getTime())) // returns 1618383600000 await clock.tick(1000) console.log(await browser.execute(() => new Date().getTime())) // returns 1618383601000 * * * @alias clock.tick * @param { number } ms The number of milliseconds to move the clock. * @returns { `Promise` } */ export {}; //# sourceMappingURL=tick.d.ts.map