summaryrefslogtreecommitdiff
path: root/tests/034_onload
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2019-09-16 21:05:14 -0400
committerGitHub <noreply@github.com>2019-09-16 21:05:14 -0400
commit9cfdc60a23e6418d4780dc3ebd6266248555bb03 (patch)
tree19ca25fa733318024d1f36724a2c20741e649012 /tests/034_onload
parent02cb34d8ad320360c800b9af7b941990c48b9742 (diff)
Move integration tests to //cli/tests/ (#2964)
This ensures the deno executable is properly created before running the integration tests. Also allows deno_cli to be used as a lib. Docs are now properly generated: https://docs.rs/deno_cli/0.18.4/deno_cli/ Towards #2933 Prep for #2955
Diffstat (limited to 'tests/034_onload')
-rw-r--r--tests/034_onload/imported.ts8
-rw-r--r--tests/034_onload/main.ts14
-rw-r--r--tests/034_onload/nest_imported.ts7
3 files changed, 0 insertions, 29 deletions
diff --git a/tests/034_onload/imported.ts b/tests/034_onload/imported.ts
deleted file mode 100644
index 5cf2d7b4c..000000000
--- a/tests/034_onload/imported.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-import "./nest_imported.ts";
-window.addEventListener(
- "load",
- (e: Event): void => {
- console.log(`got ${e.type} event in event handler (imported)`);
- }
-);
-console.log("log from imported script");
diff --git a/tests/034_onload/main.ts b/tests/034_onload/main.ts
deleted file mode 100644
index 68851950a..000000000
--- a/tests/034_onload/main.ts
+++ /dev/null
@@ -1,14 +0,0 @@
-import "./imported.ts";
-
-window.addEventListener(
- "load",
- (e: Event): void => {
- console.log(`got ${e.type} event in event handler (main)`);
- }
-);
-
-window.onload = (e: Event): void => {
- console.log(`got ${e.type} event in onload function`);
-};
-
-console.log("log from main");
diff --git a/tests/034_onload/nest_imported.ts b/tests/034_onload/nest_imported.ts
deleted file mode 100644
index 2e2bee1d5..000000000
--- a/tests/034_onload/nest_imported.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-window.addEventListener(
- "load",
- (e: Event): void => {
- console.log(`got ${e.type} event in event handler (nest_imported)`);
- }
-);
-console.log("log from nest_imported script");