summaryrefslogtreecommitdiff
path: root/tests/specs/task/dependencies/util.js
blob: 9579eb9c9fc86a5bdd5bebdb4fee7c1df3b9b408 (plain)
1
2
3
4
export async function randomTimeout(min, max) {
  const timeout = Math.floor(Math.random() * (max - min + 1) + min);
  return new Promise((resolve) => setTimeout(resolve, timeout));
}