From 227ec14e6ca596bb4ddcb2ee2ec82311f0ac87e5 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Tue, 6 Feb 2024 21:06:34 -0500 Subject: chore: use same test server for jsr tests (#22303) We had two test servers. --- cli/tests/testdata/jsr/deps/main.out | 20 ++++++++++---------- cli/tests/testdata/jsr/deps/main_info.out | 28 ++++++++++++++-------------- 2 files changed, 24 insertions(+), 24 deletions(-) (limited to 'cli/tests/testdata/jsr/deps') diff --git a/cli/tests/testdata/jsr/deps/main.out b/cli/tests/testdata/jsr/deps/main.out index 388e1a6d5..621703c4b 100644 --- a/cli/tests/testdata/jsr/deps/main.out +++ b/cli/tests/testdata/jsr/deps/main.out @@ -1,13 +1,13 @@ -Download http://localhost:4545/jsr/registry/@denotest/deps/meta.json -Download http://localhost:4545/jsr/registry/@denotest/deps/1.0.0_meta.json -Download http://localhost:4545/jsr/registry/@denotest/module_graph/meta.json -Download http://localhost:4545/jsr/registry/@denotest/no_module_graph/meta.json -Download http://localhost:4545/jsr/registry/@denotest/module_graph/1.4.0_meta.json -Download http://localhost:4545/jsr/registry/@denotest/no_module_graph/0.1.1_meta.json +Download http://127.0.0.1:4250/@denotest/deps/meta.json +Download http://127.0.0.1:4250/@denotest/deps/1.0.0_meta.json +Download http://127.0.0.1:4250/@denotest/module_graph/meta.json +Download http://127.0.0.1:4250/@denotest/no_module_graph/meta.json +Download http://127.0.0.1:4250/@denotest/module_graph/1.4.0_meta.json +Download http://127.0.0.1:4250/@denotest/no_module_graph/0.1.1_meta.json [UNORDERED_START] -Download http://localhost:4545/jsr/registry/@denotest/deps/1.0.0/mod.ts -Download http://localhost:4545/jsr/registry/@denotest/module_graph/1.4.0/other.ts -Download http://localhost:4545/jsr/registry/@denotest/no_module_graph/0.1.1/mod.ts -Download http://localhost:4545/jsr/registry/@denotest/no_module_graph/0.1.1/TestClass.ts +Download http://127.0.0.1:4250/@denotest/deps/1.0.0/mod.ts +Download http://127.0.0.1:4250/@denotest/module_graph/1.4.0/other.ts +Download http://127.0.0.1:4250/@denotest/no_module_graph/0.1.1/mod.ts +Download http://127.0.0.1:4250/@denotest/no_module_graph/0.1.1/TestClass.ts [UNORDERED_END] { version: "0.1.1", other: Other {} } diff --git a/cli/tests/testdata/jsr/deps/main_info.out b/cli/tests/testdata/jsr/deps/main_info.out index c100e1363..c4d412707 100644 --- a/cli/tests/testdata/jsr/deps/main_info.out +++ b/cli/tests/testdata/jsr/deps/main_info.out @@ -1,14 +1,14 @@ -Download http://localhost:4545/jsr/registry/@denotest/deps/meta.json -Download http://localhost:4545/jsr/registry/@denotest/deps/1.0.0_meta.json -Download http://localhost:4545/jsr/registry/@denotest/module_graph/meta.json -Download http://localhost:4545/jsr/registry/@denotest/no_module_graph/meta.json -Download http://localhost:4545/jsr/registry/@denotest/module_graph/1.4.0_meta.json -Download http://localhost:4545/jsr/registry/@denotest/no_module_graph/0.1.1_meta.json +Download http://127.0.0.1:4250/@denotest/deps/meta.json +Download http://127.0.0.1:4250/@denotest/deps/1.0.0_meta.json +Download http://127.0.0.1:4250/@denotest/module_graph/meta.json +Download http://127.0.0.1:4250/@denotest/no_module_graph/meta.json +Download http://127.0.0.1:4250/@denotest/module_graph/1.4.0_meta.json +Download http://127.0.0.1:4250/@denotest/no_module_graph/0.1.1_meta.json [UNORDERED_START] -Download http://localhost:4545/jsr/registry/@denotest/deps/1.0.0/mod.ts -Download http://localhost:4545/jsr/registry/@denotest/module_graph/1.4.0/other.ts -Download http://localhost:4545/jsr/registry/@denotest/no_module_graph/0.1.1/mod.ts -Download http://localhost:4545/jsr/registry/@denotest/no_module_graph/0.1.1/TestClass.ts +Download http://127.0.0.1:4250/@denotest/deps/1.0.0/mod.ts +Download http://127.0.0.1:4250/@denotest/module_graph/1.4.0/other.ts +Download http://127.0.0.1:4250/@denotest/no_module_graph/0.1.1/mod.ts +Download http://127.0.0.1:4250/@denotest/no_module_graph/0.1.1/TestClass.ts [UNORDERED_END] local: [WILDCARD]main.ts type: TypeScript @@ -16,7 +16,7 @@ dependencies: 4 unique size: [WILDCARD] file:///[WILDCARD]main.ts ([WILDCARD]) -└─┬ http://localhost:4545/jsr/registry/@denotest/deps/1.0.0/mod.ts ([WILDCARD]) - ├── http://localhost:4545/jsr/registry/@denotest/module_graph/1.4.0/other.ts ([WILDCARD]) - └─┬ http://localhost:4545/jsr/registry/@denotest/no_module_graph/0.1.1/mod.ts ([WILDCARD]) - └── http://localhost:4545/jsr/registry/@denotest/no_module_graph/0.1.1/TestClass.ts ([WILDCARD]) +└─┬ http://127.0.0.1:4250/@denotest/deps/1.0.0/mod.ts ([WILDCARD]) + ├── http://127.0.0.1:4250/@denotest/module_graph/1.4.0/other.ts ([WILDCARD]) + └─┬ http://127.0.0.1:4250/@denotest/no_module_graph/0.1.1/mod.ts ([WILDCARD]) + └── http://127.0.0.1:4250/@denotest/no_module_graph/0.1.1/TestClass.ts ([WILDCARD]) -- cgit v1.2.3