aboutsummaryrefslogtreecommitdiff
path: root/test/bun.js/sleep.js
blob: 080597424ca7377d6163753c43c0c7d84d30d278 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
const interval = 0.01;
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");