summaryrefslogtreecommitdiff
path: root/tests/testdata/import_attributes
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testdata/import_attributes')
-rw-r--r--tests/testdata/import_attributes/dynamic_import.out1
-rw-r--r--tests/testdata/import_attributes/dynamic_import.ts3
2 files changed, 0 insertions, 4 deletions
diff --git a/tests/testdata/import_attributes/dynamic_import.out b/tests/testdata/import_attributes/dynamic_import.out
index 01bc76c8a..7a7b4c91f 100644
--- a/tests/testdata/import_attributes/dynamic_import.out
+++ b/tests/testdata/import_attributes/dynamic_import.out
@@ -1,3 +1,2 @@
[WILDCARD]
[Module: null prototype] { default: { a: "b", c: { d: 10 } } }
-[Module: null prototype] { default: { a: "b", c: { d: 10 } } }
diff --git a/tests/testdata/import_attributes/dynamic_import.ts b/tests/testdata/import_attributes/dynamic_import.ts
index afff52e1a..093136fb0 100644
--- a/tests/testdata/import_attributes/dynamic_import.ts
+++ b/tests/testdata/import_attributes/dynamic_import.ts
@@ -1,6 +1,3 @@
const data1 = await import("./data.json", { with: { type: "json" } });
-// deno-lint-ignore no-import-assertions
-const data2 = await import("./data.json", { assert: { type: "json" } });
console.log(data1);
-console.log(data2);