mirror of
https://github.com/denoland/deno.git
synced 2025-02-10 08:02:18 -05:00
![Bartek Iwańczuk](/assets/img/avatar_default.png)
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");
|