Menu
Open source

k6/timers

Implement timers to work with k6’s event loop. They mimic the functionality found in browsers and other JavaScript runtimes.

FunctionDescription
setTimeoutSets a function to be run after a given timeout.
clearTimeoutClears a previously set timeout with setTimeout.
setIntervalSets a function to be run on a given interval.
clearIntervalClears a previously set interval with setInterval.