summaryrefslogtreecommitdiff
path: root/tests/specs/test/load_unload/main.ts
diff options
context:
space:
mode:
authorHasanAlrimawi <141642411+HasanAlrimawi@users.noreply.github.com>2024-09-16 22:38:40 +0300
committerGitHub <noreply@github.com>2024-09-16 19:38:40 +0000
commite0b9c745c15720914f14996bf357d5b375e2dbd8 (patch)
tree0dfc717082bedb2eec13eceb5cdeb1ef12b8f7f5 /tests/specs/test/load_unload/main.ts
parent6ce16145dd12d8a272cb543871276c33c8201a37 (diff)
chore: deprecate test itests (#25512)
This PR is part of #22907 --------- Signed-off-by: HasanAlrimawi <141642411+HasanAlrimawi@users.noreply.github.com> Co-authored-by: Bartek IwaƄczuk <biwanczuk@gmail.com>
Diffstat (limited to 'tests/specs/test/load_unload/main.ts')
-rw-r--r--tests/specs/test/load_unload/main.ts25
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/specs/test/load_unload/main.ts b/tests/specs/test/load_unload/main.ts
new file mode 100644
index 000000000..5027b949a
--- /dev/null
+++ b/tests/specs/test/load_unload/main.ts
@@ -0,0 +1,25 @@
+let interval: number | null = null;
+addEventListener("load", () => {
+ if (interval) {
+ throw new Error("Interval is already set");
+ }
+
+ console.log("load");
+ interval = setInterval(() => {}, 0);
+});
+
+addEventListener("unload", () => {
+ if (!interval) {
+ throw new Error("Interval was not set");
+ }
+
+ console.log("unload");
+ clearInterval(interval);
+});
+
+Deno.test("test", () => {
+ console.log("test");
+ if (!interval) {
+ throw new Error("Interval was not set");
+ }
+});