0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-31 09:14:20 -04:00
denoland-deno/cli/tests/testdata/worker_close_in_wasm_reactions.js
2022-07-20 16:56:53 +02:00

10 lines
330 B
JavaScript

// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
// https://github.com/denoland/deno/issues/12263
// Test for a panic that happens when a worker is closed in the reactions of a
// WASM async operation.
new Worker(
import.meta.resolve("./workers/close_in_wasm_reactions.js"),
{ type: "module" },
);