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

console.timeEnd("Slept");