aboutsummaryrefslogtreecommitdiffstats
path: root/test/node_smoke_tests/module/document_missing.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/node_smoke_tests/module/document_missing.js')
-rw-r--r--test/node_smoke_tests/module/document_missing.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/node_smoke_tests/module/document_missing.js b/test/node_smoke_tests/module/document_missing.js
deleted file mode 100644
index 9394af796..000000000
--- a/test/node_smoke_tests/module/document_missing.js
+++ /dev/null
@@ -1,13 +0,0 @@
-import assert from "node:assert";
-
-import { ensureGlobalNotCreated } from "./lib/ensure_global_not_created.js";
-import { getJQueryModuleSpecifier } from "./lib/jquery-module-specifier.js";
-
-const jQueryModuleSpecifier = getJQueryModuleSpecifier();
-const { default: jQueryFactory } = await import( jQueryModuleSpecifier );
-
-assert.throws( () => {
- jQueryFactory( {} );
-}, /jQuery requires a window with a document/ );
-
-ensureGlobalNotCreated();