1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/cli/tests/testdata/034_onload/imported.ts

13 lines
397 B
TypeScript
Raw Normal View History

// deno-lint-ignore-file no-window-prefix
import { assert } from "../../../../test_util/std/testing/asserts.ts";
2019-07-16 00:19:26 -04:00
import "./nest_imported.ts";
2019-10-02 11:32:51 -04:00
const handler = (e: Event) => {
2019-10-02 11:32:51 -04:00
assert(!e.cancelable);
console.log(`got ${e.type} event in event handler (imported)`);
};
window.addEventListener("load", handler);
window.addEventListener("unload", handler);
2019-07-16 00:19:26 -04:00
console.log("log from imported script");