summaryrefslogtreecommitdiff
path: root/tests/specs/test/slow_test/main.js
blob: 830d2bf79af06b16cf3c5ed54a9ca7c2678a0153 (plain)
1
2
3
4
Deno.test(async function test() {
  // We want to get at least one slow test warning
  await new Promise((r) => setTimeout(r, 3_000));
});