summaryrefslogtreecommitdiff
path: root/tests/testdata/import_attributes/dynamic_import.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testdata/import_attributes/dynamic_import.ts')
-rw-r--r--tests/testdata/import_attributes/dynamic_import.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/testdata/import_attributes/dynamic_import.ts b/tests/testdata/import_attributes/dynamic_import.ts
index 73f348697..afff52e1a 100644
--- a/tests/testdata/import_attributes/dynamic_import.ts
+++ b/tests/testdata/import_attributes/dynamic_import.ts
@@ -1,4 +1,5 @@
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);