summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/publish
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/testdata/publish')
-rw-r--r--cli/tests/testdata/publish/deno_jsonc.out6
-rw-r--r--cli/tests/testdata/publish/deno_jsonc/deno.jsonc11
-rw-r--r--cli/tests/testdata/publish/deno_jsonc/mod.ts5
-rw-r--r--cli/tests/testdata/publish/deno_jsonc/std_http.ts6
-rw-r--r--cli/tests/testdata/publish/dry_run.out4
-rw-r--r--cli/tests/testdata/publish/invalid_fast_check.out16
-rw-r--r--cli/tests/testdata/publish/invalid_fast_check/deno.json7
-rw-r--r--cli/tests/testdata/publish/invalid_fast_check/mod.ts4
-rw-r--r--cli/tests/testdata/publish/invalid_import.out32
-rw-r--r--cli/tests/testdata/publish/invalid_import/deno.json10
-rw-r--r--cli/tests/testdata/publish/invalid_import/mod.ts9
-rw-r--r--cli/tests/testdata/publish/invalid_path.out11
-rw-r--r--cli/tests/testdata/publish/invalid_path/deno.json7
-rw-r--r--cli/tests/testdata/publish/invalid_path/mod.ts3
-rw-r--r--cli/tests/testdata/publish/invalid_path/path with spaces.txt0
-rw-r--r--cli/tests/testdata/publish/javascript_decl_file.out6
-rw-r--r--cli/tests/testdata/publish/javascript_decl_file/deno.json7
-rw-r--r--cli/tests/testdata/publish/javascript_decl_file/mod.d.ts1
-rw-r--r--cli/tests/testdata/publish/javascript_decl_file/mod.js5
-rw-r--r--cli/tests/testdata/publish/javascript_missing_decl_file.out12
-rw-r--r--cli/tests/testdata/publish/javascript_missing_decl_file/deno.json8
-rw-r--r--cli/tests/testdata/publish/javascript_missing_decl_file/mod.js3
-rw-r--r--cli/tests/testdata/publish/javascript_missing_decl_file/other.js3
-rw-r--r--cli/tests/testdata/publish/missing_deno_json.out1
-rw-r--r--cli/tests/testdata/publish/missing_deno_json/main.ts3
-rw-r--r--cli/tests/testdata/publish/no_token.out1
-rw-r--r--cli/tests/testdata/publish/no_zap.out5
-rw-r--r--cli/tests/testdata/publish/node_specifier.out8
-rw-r--r--cli/tests/testdata/publish/node_specifier/deno.json7
-rw-r--r--cli/tests/testdata/publish/node_specifier/mod.ts5
-rw-r--r--cli/tests/testdata/publish/successful.out6
-rw-r--r--cli/tests/testdata/publish/successful/deno.json10
-rw-r--r--cli/tests/testdata/publish/successful/mod.ts5
-rw-r--r--cli/tests/testdata/publish/successful/std_http.ts6
-rw-r--r--cli/tests/testdata/publish/symlink.out12
-rw-r--r--cli/tests/testdata/publish/symlink/deno.json7
-rw-r--r--cli/tests/testdata/publish/symlink/mod.ts3
l---------cli/tests/testdata/publish/symlink/symlink1
-rw-r--r--cli/tests/testdata/publish/unanalyzable_dynamic_import.out16
-rw-r--r--cli/tests/testdata/publish/unanalyzable_dynamic_import/deno.json7
-rw-r--r--cli/tests/testdata/publish/unanalyzable_dynamic_import/mod.ts1
-rw-r--r--cli/tests/testdata/publish/workspace.out11
-rw-r--r--cli/tests/testdata/publish/workspace/bar/deno.json7
-rw-r--r--cli/tests/testdata/publish/workspace/bar/mod.ts3
-rw-r--r--cli/tests/testdata/publish/workspace/deno.json6
-rw-r--r--cli/tests/testdata/publish/workspace/foo/deno.json10
-rw-r--r--cli/tests/testdata/publish/workspace/foo/mod.ts5
-rw-r--r--cli/tests/testdata/publish/workspace_individual.out6
48 files changed, 0 insertions, 328 deletions
diff --git a/cli/tests/testdata/publish/deno_jsonc.out b/cli/tests/testdata/publish/deno_jsonc.out
deleted file mode 100644
index 2d5e4ffea..000000000
--- a/cli/tests/testdata/publish/deno_jsonc.out
+++ /dev/null
@@ -1,6 +0,0 @@
-Checking fast check type graph for errors...
-Ensuring type checks...
-Check file:///[WILDCARD]/publish/deno_jsonc/mod.ts
-Publishing @foo/bar@1.0.0 ...
-Successfully published @foo/bar@1.0.0
-Visit http://127.0.0.1:4250/@foo/bar@1.0.0 for details
diff --git a/cli/tests/testdata/publish/deno_jsonc/deno.jsonc b/cli/tests/testdata/publish/deno_jsonc/deno.jsonc
deleted file mode 100644
index 4c9dfb08c..000000000
--- a/cli/tests/testdata/publish/deno_jsonc/deno.jsonc
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- // It's .jsonc file so it can have comments
- "name": "@foo/bar",
- "version": "1.0.0",
- "exports": {
- ".": "./mod.ts"
- },
- "imports": {
- "@std/http": "./std_http.ts"
- }
-}
diff --git a/cli/tests/testdata/publish/deno_jsonc/mod.ts b/cli/tests/testdata/publish/deno_jsonc/mod.ts
deleted file mode 100644
index 4bb6da255..000000000
--- a/cli/tests/testdata/publish/deno_jsonc/mod.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import http from "@std/http";
-
-export function foobar(): { fileServer(): void } {
- return http.fileServer;
-}
diff --git a/cli/tests/testdata/publish/deno_jsonc/std_http.ts b/cli/tests/testdata/publish/deno_jsonc/std_http.ts
deleted file mode 100644
index 9d57b36f3..000000000
--- a/cli/tests/testdata/publish/deno_jsonc/std_http.ts
+++ /dev/null
@@ -1,6 +0,0 @@
-// temp until we get jsr:@std/http in the test server
-export default {
- fileServer() {
- console.log("Hi");
- },
-};
diff --git a/cli/tests/testdata/publish/dry_run.out b/cli/tests/testdata/publish/dry_run.out
deleted file mode 100644
index f9f4df72e..000000000
--- a/cli/tests/testdata/publish/dry_run.out
+++ /dev/null
@@ -1,4 +0,0 @@
-Checking fast check type graph for errors...
-Ensuring type checks...
-Check [WILDCARD]
-Warning Aborting due to --dry-run
diff --git a/cli/tests/testdata/publish/invalid_fast_check.out b/cli/tests/testdata/publish/invalid_fast_check.out
deleted file mode 100644
index d18be45fe..000000000
--- a/cli/tests/testdata/publish/invalid_fast_check.out
+++ /dev/null
@@ -1,16 +0,0 @@
-Checking fast check type graph for errors...
-error[zap-missing-explicit-return-type]: missing explicit return type in the public API
- --> [WILDCARD]mod.ts:2:17
- |
-2 | export function getRandom() {
- | ^^^^^^^^^ this function is missing an explicit return type
- = hint: add an explicit return type to the function
-
- info: all functions in the public API must have an explicit return type
- docs: https://jsr.io/go/zap-missing-explicit-return-type
-
-This package contains Zap errors. Although conforming to Zap will
-significantly improve the type checking performance of your library,
-you can choose to skip it by providing the --no-zap flag.
-
-error: Found 1 problem
diff --git a/cli/tests/testdata/publish/invalid_fast_check/deno.json b/cli/tests/testdata/publish/invalid_fast_check/deno.json
deleted file mode 100644
index 5826e5529..000000000
--- a/cli/tests/testdata/publish/invalid_fast_check/deno.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
- "name": "@foo/bar",
- "version": "1.1.0",
- "exports": {
- ".": "./mod.ts"
- }
-}
diff --git a/cli/tests/testdata/publish/invalid_fast_check/mod.ts b/cli/tests/testdata/publish/invalid_fast_check/mod.ts
deleted file mode 100644
index 025311049..000000000
--- a/cli/tests/testdata/publish/invalid_fast_check/mod.ts
+++ /dev/null
@@ -1,4 +0,0 @@
-// requires an explicit type annotation of `number`
-export function getRandom() {
- return Math.random();
-}
diff --git a/cli/tests/testdata/publish/invalid_import.out b/cli/tests/testdata/publish/invalid_import.out
deleted file mode 100644
index ca9d20eed..000000000
--- a/cli/tests/testdata/publish/invalid_import.out
+++ /dev/null
@@ -1,32 +0,0 @@
-Download http://localhost:4545/welcome.ts
-Download http://localhost:4545/echo.ts
-Download http://localhost:4545/npm/registry/chalk
-Download http://localhost:4545/npm/registry/chalk/chalk-5.0.1.tgz
-Checking fast check type graph for errors...
-Ensuring type checks...
-Check file://[WILDCARD]mod.ts
-error[invalid-external-import]: invalid import to a non-JSR 'http' specifier
- --> [WILDCARD]mod.ts:1:8
- |
-1 | import "http://localhost:4545/welcome.ts";
- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the specifier
- = hint: replace this import with one from jsr or npm, or vendor the dependency into your package
-
- info: the import was resolved to 'http://localhost:4545/welcome.ts'
- info: this specifier is not allowed to be imported on jsr
- info: jsr only supports importing `jsr:`, `npm:`, and `data:` specifiers
- docs: https://jsr.io/go/invalid-external-import
-
-error[invalid-external-import]: invalid import to a non-JSR 'http' specifier
- --> [WILDCARD]mod.ts:2:8
- |
-2 | import "$echo";
- | ^^^^^^^ the specifier
- = hint: replace this import with one from jsr or npm, or vendor the dependency into your package
-
- info: the import was resolved to 'http://localhost:4545/echo.ts'
- info: this specifier is not allowed to be imported on jsr
- info: jsr only supports importing `jsr:`, `npm:`, and `data:` specifiers
- docs: https://jsr.io/go/invalid-external-import
-
-error: Found 2 problems
diff --git a/cli/tests/testdata/publish/invalid_import/deno.json b/cli/tests/testdata/publish/invalid_import/deno.json
deleted file mode 100644
index 49b666d22..000000000
--- a/cli/tests/testdata/publish/invalid_import/deno.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "name": "@foo/bar",
- "version": "1.0.0",
- "imports": {
- "$echo": "http://localhost:4545/echo.ts"
- },
- "exports": {
- ".": "./mod.ts"
- }
-}
diff --git a/cli/tests/testdata/publish/invalid_import/mod.ts b/cli/tests/testdata/publish/invalid_import/mod.ts
deleted file mode 100644
index bdaf010e2..000000000
--- a/cli/tests/testdata/publish/invalid_import/mod.ts
+++ /dev/null
@@ -1,9 +0,0 @@
-import "http://localhost:4545/welcome.ts";
-import "$echo";
-
-import "data:application/javascript,console.log(1)";
-import "npm:chalk@5";
-
-export function foobar(): string {
- return "string";
-}
diff --git a/cli/tests/testdata/publish/invalid_path.out b/cli/tests/testdata/publish/invalid_path.out
deleted file mode 100644
index cd3e92e0c..000000000
--- a/cli/tests/testdata/publish/invalid_path.out
+++ /dev/null
@@ -1,11 +0,0 @@
-Checking fast check type graph for errors...
-Ensuring type checks...
-Check file://[WILDCARD]mod.ts
-error[invalid-path]: package path must not contain whitespace (found ' ')
- --> [WILDCARD]path with spaces.txt
- = hint: rename or remove the file, or add it to 'publish.exclude' in the config file
-
- info: to portably support all platforms, including windows, the allowed characters in package paths are limited
- docs: https://jsr.io/go/invalid-path
-
-error: Found 1 problem
diff --git a/cli/tests/testdata/publish/invalid_path/deno.json b/cli/tests/testdata/publish/invalid_path/deno.json
deleted file mode 100644
index 213a7cec6..000000000
--- a/cli/tests/testdata/publish/invalid_path/deno.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
- "name": "@foo/bar",
- "version": "1.0.0",
- "exports": {
- ".": "./mod.ts"
- }
-}
diff --git a/cli/tests/testdata/publish/invalid_path/mod.ts b/cli/tests/testdata/publish/invalid_path/mod.ts
deleted file mode 100644
index 9e217d9b0..000000000
--- a/cli/tests/testdata/publish/invalid_path/mod.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-export function foobar(): string {
- return "string";
-}
diff --git a/cli/tests/testdata/publish/invalid_path/path with spaces.txt b/cli/tests/testdata/publish/invalid_path/path with spaces.txt
deleted file mode 100644
index e69de29bb..000000000
--- a/cli/tests/testdata/publish/invalid_path/path with spaces.txt
+++ /dev/null
diff --git a/cli/tests/testdata/publish/javascript_decl_file.out b/cli/tests/testdata/publish/javascript_decl_file.out
deleted file mode 100644
index deb66eba0..000000000
--- a/cli/tests/testdata/publish/javascript_decl_file.out
+++ /dev/null
@@ -1,6 +0,0 @@
-Checking fast check type graph for errors...
-Ensuring type checks...
-Check file:///[WILDCARD]/javascript_decl_file/mod.js
-Publishing @foo/bar@1.0.0 ...
-Successfully published @foo/bar@1.0.0
-Visit http://127.0.0.1:4250/@foo/bar@1.0.0 for details
diff --git a/cli/tests/testdata/publish/javascript_decl_file/deno.json b/cli/tests/testdata/publish/javascript_decl_file/deno.json
deleted file mode 100644
index e5dbfa8d3..000000000
--- a/cli/tests/testdata/publish/javascript_decl_file/deno.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
- "name": "@foo/bar",
- "version": "1.0.0",
- "exports": {
- ".": "./mod.js"
- }
-}
diff --git a/cli/tests/testdata/publish/javascript_decl_file/mod.d.ts b/cli/tests/testdata/publish/javascript_decl_file/mod.d.ts
deleted file mode 100644
index b2f6c69a8..000000000
--- a/cli/tests/testdata/publish/javascript_decl_file/mod.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-export function getRandom(): number;
diff --git a/cli/tests/testdata/publish/javascript_decl_file/mod.js b/cli/tests/testdata/publish/javascript_decl_file/mod.js
deleted file mode 100644
index 2395e622b..000000000
--- a/cli/tests/testdata/publish/javascript_decl_file/mod.js
+++ /dev/null
@@ -1,5 +0,0 @@
-/// <reference types="./mod.d.ts" />
-
-export function getRandom() {
- return Math.random();
-}
diff --git a/cli/tests/testdata/publish/javascript_missing_decl_file.out b/cli/tests/testdata/publish/javascript_missing_decl_file.out
deleted file mode 100644
index 557451b29..000000000
--- a/cli/tests/testdata/publish/javascript_missing_decl_file.out
+++ /dev/null
@@ -1,12 +0,0 @@
-Checking fast check type graph for errors...
-warning[zap-unsupported-javascript-entrypoint]: used a JavaScript module without type declarations as an entrypoints
- --> [WILDCARD]mod.js
- = hint: add a type declaration (d.ts) for the JavaScript module, or rewrite it to TypeScript
-
- info: JavaScript files with no corresponding declaration require type inference to be type checked
- info: fast check avoids type inference, so JavaScript entrypoints should be avoided
- docs: https://jsr.io/go/zap-unsupported-javascript-entrypoint
-
-Publishing @foo/bar@1.0.0 ...
-Successfully published @foo/bar@1.0.0
-Visit http://127.0.0.1:4250/@foo/bar@1.0.0 for details
diff --git a/cli/tests/testdata/publish/javascript_missing_decl_file/deno.json b/cli/tests/testdata/publish/javascript_missing_decl_file/deno.json
deleted file mode 100644
index e12927c26..000000000
--- a/cli/tests/testdata/publish/javascript_missing_decl_file/deno.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "name": "@foo/bar",
- "version": "1.0.0",
- "exports": {
- ".": "./mod.js",
- "./other": "./other.js"
- }
-}
diff --git a/cli/tests/testdata/publish/javascript_missing_decl_file/mod.js b/cli/tests/testdata/publish/javascript_missing_decl_file/mod.js
deleted file mode 100644
index 4a62fa5b4..000000000
--- a/cli/tests/testdata/publish/javascript_missing_decl_file/mod.js
+++ /dev/null
@@ -1,3 +0,0 @@
-export function getRandom() {
- return Math.random();
-}
diff --git a/cli/tests/testdata/publish/javascript_missing_decl_file/other.js b/cli/tests/testdata/publish/javascript_missing_decl_file/other.js
deleted file mode 100644
index 89ffb80ba..000000000
--- a/cli/tests/testdata/publish/javascript_missing_decl_file/other.js
+++ /dev/null
@@ -1,3 +0,0 @@
-export function other() {
- return Math.random();
-}
diff --git a/cli/tests/testdata/publish/missing_deno_json.out b/cli/tests/testdata/publish/missing_deno_json.out
deleted file mode 100644
index adb472c71..000000000
--- a/cli/tests/testdata/publish/missing_deno_json.out
+++ /dev/null
@@ -1 +0,0 @@
-error: Couldn't find a deno.json or a deno.jsonc configuration file in [WILDCARD] \ No newline at end of file
diff --git a/cli/tests/testdata/publish/missing_deno_json/main.ts b/cli/tests/testdata/publish/missing_deno_json/main.ts
deleted file mode 100644
index 8d9b8a22a..000000000
--- a/cli/tests/testdata/publish/missing_deno_json/main.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-export function add(a: number, b: number): number {
- return a + b;
-}
diff --git a/cli/tests/testdata/publish/no_token.out b/cli/tests/testdata/publish/no_token.out
deleted file mode 100644
index 41415094c..000000000
--- a/cli/tests/testdata/publish/no_token.out
+++ /dev/null
@@ -1 +0,0 @@
-error: No means to authenticate. Pass a token to `--token`[WILDCARD]
diff --git a/cli/tests/testdata/publish/no_zap.out b/cli/tests/testdata/publish/no_zap.out
deleted file mode 100644
index 109964903..000000000
--- a/cli/tests/testdata/publish/no_zap.out
+++ /dev/null
@@ -1,5 +0,0 @@
-Ensuring type checks...
-Check file:///[WILDCARD]/mod.ts
-Publishing @foo/bar@1.1.0 ...
-Successfully published @foo/bar@1.1.0
-Visit http://127.0.0.1:4250/@foo/bar@1.1.0 for details
diff --git a/cli/tests/testdata/publish/node_specifier.out b/cli/tests/testdata/publish/node_specifier.out
deleted file mode 100644
index 7acb5b5ba..000000000
--- a/cli/tests/testdata/publish/node_specifier.out
+++ /dev/null
@@ -1,8 +0,0 @@
-Checking fast check type graph for errors...
-Ensuring type checks...
-Download http://localhost:4545/npm/registry/@types/node
-Download http://localhost:4545/npm/registry/@types/node/node-[WILDCARD].tgz
-Check file:///[WILDCARD]/publish/node_specifier/mod.ts
-Publishing @foo/bar@1.0.0 ...
-Successfully published @foo/bar@1.0.0
-Visit http://127.0.0.1:4250/@foo/bar@1.0.0 for details
diff --git a/cli/tests/testdata/publish/node_specifier/deno.json b/cli/tests/testdata/publish/node_specifier/deno.json
deleted file mode 100644
index 213a7cec6..000000000
--- a/cli/tests/testdata/publish/node_specifier/deno.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
- "name": "@foo/bar",
- "version": "1.0.0",
- "exports": {
- ".": "./mod.ts"
- }
-}
diff --git a/cli/tests/testdata/publish/node_specifier/mod.ts b/cli/tests/testdata/publish/node_specifier/mod.ts
deleted file mode 100644
index 9d8263709..000000000
--- a/cli/tests/testdata/publish/node_specifier/mod.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import "node:http";
-
-export function foobar(): string {
- return "string";
-}
diff --git a/cli/tests/testdata/publish/successful.out b/cli/tests/testdata/publish/successful.out
deleted file mode 100644
index 7dbe16807..000000000
--- a/cli/tests/testdata/publish/successful.out
+++ /dev/null
@@ -1,6 +0,0 @@
-Checking fast check type graph for errors...
-Ensuring type checks...
-Check file:///[WILDCARD]/publish/successful/mod.ts
-Publishing @foo/bar@1.0.0 ...
-Successfully published @foo/bar@1.0.0
-Visit http://127.0.0.1:4250/@foo/bar@1.0.0 for details
diff --git a/cli/tests/testdata/publish/successful/deno.json b/cli/tests/testdata/publish/successful/deno.json
deleted file mode 100644
index fefab899b..000000000
--- a/cli/tests/testdata/publish/successful/deno.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "name": "@foo/bar",
- "version": "1.0.0",
- "exports": {
- ".": "./mod.ts"
- },
- "imports": {
- "@std/http": "./std_http.ts"
- }
-}
diff --git a/cli/tests/testdata/publish/successful/mod.ts b/cli/tests/testdata/publish/successful/mod.ts
deleted file mode 100644
index 4bb6da255..000000000
--- a/cli/tests/testdata/publish/successful/mod.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import http from "@std/http";
-
-export function foobar(): { fileServer(): void } {
- return http.fileServer;
-}
diff --git a/cli/tests/testdata/publish/successful/std_http.ts b/cli/tests/testdata/publish/successful/std_http.ts
deleted file mode 100644
index 9d57b36f3..000000000
--- a/cli/tests/testdata/publish/successful/std_http.ts
+++ /dev/null
@@ -1,6 +0,0 @@
-// temp until we get jsr:@std/http in the test server
-export default {
- fileServer() {
- console.log("Hi");
- },
-};
diff --git a/cli/tests/testdata/publish/symlink.out b/cli/tests/testdata/publish/symlink.out
deleted file mode 100644
index d226fa18e..000000000
--- a/cli/tests/testdata/publish/symlink.out
+++ /dev/null
@@ -1,12 +0,0 @@
-Checking fast check type graph for errors...
-Ensuring type checks...
-Check [WILDCARD]mod.ts
-warning[unsupported-file-type]: unsupported file type 'symlink'
- --> [WILDCARD]symlink
- = hint: remove the file, or add it to 'publish.exclude' in the config file
-
- info: only files and directories are supported
- info: the file was ignored and will not be published
- docs: https://jsr.io/go/unsupported-file-type
-
-Warning Aborting due to --dry-run
diff --git a/cli/tests/testdata/publish/symlink/deno.json b/cli/tests/testdata/publish/symlink/deno.json
deleted file mode 100644
index 213a7cec6..000000000
--- a/cli/tests/testdata/publish/symlink/deno.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
- "name": "@foo/bar",
- "version": "1.0.0",
- "exports": {
- ".": "./mod.ts"
- }
-}
diff --git a/cli/tests/testdata/publish/symlink/mod.ts b/cli/tests/testdata/publish/symlink/mod.ts
deleted file mode 100644
index 9e217d9b0..000000000
--- a/cli/tests/testdata/publish/symlink/mod.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-export function foobar(): string {
- return "string";
-}
diff --git a/cli/tests/testdata/publish/symlink/symlink b/cli/tests/testdata/publish/symlink/symlink
deleted file mode 120000
index 0df9bcd04..000000000
--- a/cli/tests/testdata/publish/symlink/symlink
+++ /dev/null
@@ -1 +0,0 @@
-./mod.ts \ No newline at end of file
diff --git a/cli/tests/testdata/publish/unanalyzable_dynamic_import.out b/cli/tests/testdata/publish/unanalyzable_dynamic_import.out
deleted file mode 100644
index 3be7ece87..000000000
--- a/cli/tests/testdata/publish/unanalyzable_dynamic_import.out
+++ /dev/null
@@ -1,16 +0,0 @@
-Checking fast check type graph for errors...
-Ensuring type checks...
-Check file://[WILDCARD]/mod.ts
-warning[unanalyzable-dynamic-import]: unable to analyze dynamic import
- --> [WILDCARD]mod.ts:1:7
- |
-1 | await import("asd " + asd);
- | ^^^^^^^^^^^^^^^^^^^^ the unanalyzable dynamic import
-
- info: after publishing this package, imports from the local import map do not work
- info: dynamic imports that can not be analyzed at publish time will not be rewritten automatically
- info: make sure the dynamic import is resolvable at runtime without an import map
-
-Publishing @foo/bar@1.0.0 ...
-Successfully published @foo/bar@1.0.0
-Visit http://127.0.0.1:4250/@foo/bar@1.0.0 for details
diff --git a/cli/tests/testdata/publish/unanalyzable_dynamic_import/deno.json b/cli/tests/testdata/publish/unanalyzable_dynamic_import/deno.json
deleted file mode 100644
index 213a7cec6..000000000
--- a/cli/tests/testdata/publish/unanalyzable_dynamic_import/deno.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
- "name": "@foo/bar",
- "version": "1.0.0",
- "exports": {
- ".": "./mod.ts"
- }
-}
diff --git a/cli/tests/testdata/publish/unanalyzable_dynamic_import/mod.ts b/cli/tests/testdata/publish/unanalyzable_dynamic_import/mod.ts
deleted file mode 100644
index fd53cb2c8..000000000
--- a/cli/tests/testdata/publish/unanalyzable_dynamic_import/mod.ts
+++ /dev/null
@@ -1 +0,0 @@
-await import("asd " + asd);
diff --git a/cli/tests/testdata/publish/workspace.out b/cli/tests/testdata/publish/workspace.out
deleted file mode 100644
index 588c22bbc..000000000
--- a/cli/tests/testdata/publish/workspace.out
+++ /dev/null
@@ -1,11 +0,0 @@
-Publishing a workspace...
-Checking fast check type graph for errors...
-Ensuring type checks...
-Check file:///[WILDCARD]/workspace/foo/mod.ts
-Check file:///[WILDCARD]/workspace/bar/mod.ts
-Publishing @foo/bar@1.0.0 ...
-Successfully published @foo/bar@1.0.0
-Visit http://127.0.0.1:4250/@foo/bar@1.0.0 for details
-Publishing @foo/foo@1.0.0 ...
-Successfully published @foo/foo@1.0.0
-Visit http://127.0.0.1:4250/@foo/foo@1.0.0 for details
diff --git a/cli/tests/testdata/publish/workspace/bar/deno.json b/cli/tests/testdata/publish/workspace/bar/deno.json
deleted file mode 100644
index 213a7cec6..000000000
--- a/cli/tests/testdata/publish/workspace/bar/deno.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
- "name": "@foo/bar",
- "version": "1.0.0",
- "exports": {
- ".": "./mod.ts"
- }
-}
diff --git a/cli/tests/testdata/publish/workspace/bar/mod.ts b/cli/tests/testdata/publish/workspace/bar/mod.ts
deleted file mode 100644
index 8d9b8a22a..000000000
--- a/cli/tests/testdata/publish/workspace/bar/mod.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-export function add(a: number, b: number): number {
- return a + b;
-}
diff --git a/cli/tests/testdata/publish/workspace/deno.json b/cli/tests/testdata/publish/workspace/deno.json
deleted file mode 100644
index 57602aab5..000000000
--- a/cli/tests/testdata/publish/workspace/deno.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "workspaces": [
- "foo",
- "bar"
- ]
-}
diff --git a/cli/tests/testdata/publish/workspace/foo/deno.json b/cli/tests/testdata/publish/workspace/foo/deno.json
deleted file mode 100644
index 79563d36c..000000000
--- a/cli/tests/testdata/publish/workspace/foo/deno.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "name": "@foo/foo",
- "version": "1.0.0",
- "exports": {
- ".": "./mod.ts"
- },
- "imports": {
- "bar": "jsr:@foo/bar@1"
- }
-}
diff --git a/cli/tests/testdata/publish/workspace/foo/mod.ts b/cli/tests/testdata/publish/workspace/foo/mod.ts
deleted file mode 100644
index adf584463..000000000
--- a/cli/tests/testdata/publish/workspace/foo/mod.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-import * as bar from "bar";
-
-export function add(a: number, b: number): number {
- return bar.add(a, b);
-}
diff --git a/cli/tests/testdata/publish/workspace_individual.out b/cli/tests/testdata/publish/workspace_individual.out
deleted file mode 100644
index 4eadb45af..000000000
--- a/cli/tests/testdata/publish/workspace_individual.out
+++ /dev/null
@@ -1,6 +0,0 @@
-Checking fast check type graph for errors...
-Ensuring type checks...
-Check file:///[WILDCARD]/workspace/bar/mod.ts
-Publishing @foo/bar@1.0.0 ...
-Successfully published @foo/bar@1.0.0
-Visit http://127.0.0.1:4250/@foo/bar@1.0.0 for details