diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-04-29 14:09:58 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-29 14:09:58 -0400 |
commit | 48daf2dc88c2ec340af37a176fd9351010b38929 (patch) | |
tree | 2786d25438ef867d97bce60cbfac01fbe22bbdfe /tests/specs/jsr/no_module_graph/multiple.ts | |
parent | 67d00fb1e37c7e2de55ab2aa376a5e57009fb2a9 (diff) |
chore: add tests for moduleGraph2 (#23603)
Also did some renames from underscores to hyphens
Diffstat (limited to 'tests/specs/jsr/no_module_graph/multiple.ts')
-rw-r--r-- | tests/specs/jsr/no_module_graph/multiple.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/specs/jsr/no_module_graph/multiple.ts b/tests/specs/jsr/no_module_graph/multiple.ts index 660ed8be6..9c7474a2c 100644 --- a/tests/specs/jsr/no_module_graph/multiple.ts +++ b/tests/specs/jsr/no_module_graph/multiple.ts @@ -1,5 +1,5 @@ -import version1 from "jsr:@denotest/no_module_graph@0.1.0"; -import version2 from "jsr:@denotest/no_module_graph@^0.2"; +import version1 from "jsr:@denotest/no-module-graph@0.1.0"; +import version2 from "jsr:@denotest/no-module-graph@^0.2"; console.log(version1); console.log(version2); |