mirror of
https://github.com/denoland/deno.git
synced 2024-11-29 16:30:56 -05:00
57541b48ba
Fixes several tests blocking https://github.com/denoland/deno/pull/25213 by replacing `window` global that is gone in Deno 2 with `globalThis`. Also adjusted a few tests using deprecated `rid` field.
12 lines
427 B
TypeScript
12 lines
427 B
TypeScript
import { assert } from "@std/assert";
|
|
import "./nest_imported.ts";
|
|
|
|
const handler = (e: Event) => {
|
|
assert(e.type === "beforeunload" ? e.cancelable : !e.cancelable);
|
|
console.log(`got ${e.type} event in event handler (imported)`);
|
|
};
|
|
|
|
globalThis.addEventListener("load", handler);
|
|
globalThis.addEventListener("beforeunload", handler);
|
|
globalThis.addEventListener("unload", handler);
|
|
console.log("log from imported script");
|