diff options
Diffstat (limited to 'tests/specs/jsr/no_module_graph')
-rw-r--r-- | tests/specs/jsr/no_module_graph/main.out | 8 | ||||
-rw-r--r-- | tests/specs/jsr/no_module_graph/main.ts | 2 | ||||
-rw-r--r-- | tests/specs/jsr/no_module_graph/main_info.out | 12 | ||||
-rw-r--r-- | tests/specs/jsr/no_module_graph/multiple.ts | 4 |
4 files changed, 13 insertions, 13 deletions
diff --git a/tests/specs/jsr/no_module_graph/main.out b/tests/specs/jsr/no_module_graph/main.out index da9b67e11..1837c5c1c 100644 --- a/tests/specs/jsr/no_module_graph/main.out +++ b/tests/specs/jsr/no_module_graph/main.out @@ -1,6 +1,6 @@ -Download http://127.0.0.1:4250/@denotest/no_module_graph/meta.json -Download http://127.0.0.1:4250/@denotest/no_module_graph/0.1.0_meta.json -Download http://127.0.0.1:4250/@denotest/no_module_graph/0.1.0/mod.ts -Download http://127.0.0.1:4250/@denotest/no_module_graph/0.1.0/TestClass.ts +Download http://127.0.0.1:4250/@denotest/no-module-graph/meta.json +Download http://127.0.0.1:4250/@denotest/no-module-graph/0.1.0_meta.json +Download http://127.0.0.1:4250/@denotest/no-module-graph/0.1.0/mod.ts +Download http://127.0.0.1:4250/@denotest/no-module-graph/0.1.0/TestClass.ts 0.1.0 TestClass {} diff --git a/tests/specs/jsr/no_module_graph/main.ts b/tests/specs/jsr/no_module_graph/main.ts index 6ea030c59..9d50eaab8 100644 --- a/tests/specs/jsr/no_module_graph/main.ts +++ b/tests/specs/jsr/no_module_graph/main.ts @@ -1,4 +1,4 @@ -import version, { TestClass } from "jsr:@denotest/no_module_graph@0.1.0"; +import version, { TestClass } from "jsr:@denotest/no-module-graph@0.1.0"; console.log(version); console.log(new TestClass()); diff --git a/tests/specs/jsr/no_module_graph/main_info.out b/tests/specs/jsr/no_module_graph/main_info.out index 0293e4120..45c97f77e 100644 --- a/tests/specs/jsr/no_module_graph/main_info.out +++ b/tests/specs/jsr/no_module_graph/main_info.out @@ -1,12 +1,12 @@ -Download http://127.0.0.1:4250/@denotest/no_module_graph/meta.json -Download http://127.0.0.1:4250/@denotest/no_module_graph/0.1.0_meta.json -Download http://127.0.0.1:4250/@denotest/no_module_graph/0.1.0/mod.ts -Download http://127.0.0.1:4250/@denotest/no_module_graph/0.1.0/TestClass.ts +Download http://127.0.0.1:4250/@denotest/no-module-graph/meta.json +Download http://127.0.0.1:4250/@denotest/no-module-graph/0.1.0_meta.json +Download http://127.0.0.1:4250/@denotest/no-module-graph/0.1.0/mod.ts +Download http://127.0.0.1:4250/@denotest/no-module-graph/0.1.0/TestClass.ts local: [WILDCARD]main.ts type: TypeScript dependencies: 2 unique size: [WILDCARD] file:///[WILDCARD]/jsr/no_module_graph/main.ts ([WILDCARD]) -└─┬ http://127.0.0.1:4250/@denotest/no_module_graph/0.1.0/mod.ts ([WILDCARD]) - └── http://127.0.0.1:4250/@denotest/no_module_graph/0.1.0/TestClass.ts ([WILDCARD]) +└─┬ http://127.0.0.1:4250/@denotest/no-module-graph/0.1.0/mod.ts ([WILDCARD]) + └── http://127.0.0.1:4250/@denotest/no-module-graph/0.1.0/TestClass.ts ([WILDCARD]) 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); |