/
githubmirror
/
deno
Обзор
Документация
Войти
/
githubmirror
/
deno
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tests/testdata/workers/racy_worker.js
25 строк
653 B
Matt Mastracci
chore: move cli/tests/ -> tests/ (#22369)
10 фев 2024, 23:22
Не верифицирован
10 фев 2024, 23:22
f5e46c9
Код
Авторство
О чём код?
// See issue for details // https://github.com/denoland/deno/issues/4080 // // After first received message, this worker schedules // [assert(), close(), assert()] ops on the same turn of microtask queue // All tasks after close should not make it onmessage = async function () { let stage = 0; await new Promise((_) => { setTimeout(() => { if (stage !== 0) throw "Unexpected stage"; stage = 1; }, 50); setTimeout(() => { if (stage !== 1) throw "Unexpected stage"; stage = 2; postMessage("DONE"); close(); }, 50); setTimeout(() => { throw "This should not be run"; }, 50); }); };