1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-12 10:37:52 -05:00
denoland-deno/tests/specs/test/before_unload_prevent_default/main.ts

7 lines
170 B
TypeScript
Raw Normal View History

addEventListener("beforeunload", (e) => {
// The worker should be killed once tests are done regardless of this.
e.preventDefault();
});
Deno.test("foo", () => {});