aboutsummaryrefslogtreecommitdiff
path: root/test/bun.js/sleep.js
blob: 1ec79e79d0c5ad9331360005732a5b46a717443d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
const interval = 10;
const now = performance.now();
console.time("Slept");
Bun.sleepSync(interval);
const elapsed = performance.now() - now;
if (elapsed < interval) {
  throw new Error("Didn't sleep");
}

console.timeEnd("Slept");