diff options
Diffstat (limited to 'cli/tests/testdata')
-rw-r--r-- | cli/tests/testdata/jsx/deno.lock | 6 | ||||
-rw-r--r-- | cli/tests/testdata/run/035_cached_only_flag.out | 3 | ||||
-rw-r--r-- | cli/tests/testdata/run/052_no_remote_flag.out | 3 | ||||
-rw-r--r-- | cli/tests/testdata/run/node_prefix_missing/main.ts | 3 | ||||
-rw-r--r-- | cli/tests/testdata/run/node_prefix_missing/main.ts.out | 3 |
5 files changed, 12 insertions, 6 deletions
diff --git a/cli/tests/testdata/jsx/deno.lock b/cli/tests/testdata/jsx/deno.lock new file mode 100644 index 000000000..011e8fe10 --- /dev/null +++ b/cli/tests/testdata/jsx/deno.lock @@ -0,0 +1,6 @@ +{ + "version": "2", + "remote": { + "http://localhost:4545/jsx/jsx-dev-runtime/index.ts": "183c5bf1cfb82b15fc1e8cca15593d4816035759532d851abd4476df378c8412" + } +}
\ No newline at end of file diff --git a/cli/tests/testdata/run/035_cached_only_flag.out b/cli/tests/testdata/run/035_cached_only_flag.out index 3bda398b6..f677ec915 100644 --- a/cli/tests/testdata/run/035_cached_only_flag.out +++ b/cli/tests/testdata/run/035_cached_only_flag.out @@ -1,4 +1 @@ error: Specifier not found in cache: "http://127.0.0.1:4545/run/019_media_types.ts", --cached-only is specified. - -Caused by: - Specifier not found in cache: "http://127.0.0.1:4545/run/019_media_types.ts", --cached-only is specified. diff --git a/cli/tests/testdata/run/052_no_remote_flag.out b/cli/tests/testdata/run/052_no_remote_flag.out index f511f6d94..2f5950ee8 100644 --- a/cli/tests/testdata/run/052_no_remote_flag.out +++ b/cli/tests/testdata/run/052_no_remote_flag.out @@ -1,4 +1 @@ error: A remote specifier was requested: "http://127.0.0.1:4545/run/019_media_types.ts", but --no-remote is specified. - -Caused by: - A remote specifier was requested: "http://127.0.0.1:4545/run/019_media_types.ts", but --no-remote is specified. diff --git a/cli/tests/testdata/run/node_prefix_missing/main.ts b/cli/tests/testdata/run/node_prefix_missing/main.ts new file mode 100644 index 000000000..c5c1885a2 --- /dev/null +++ b/cli/tests/testdata/run/node_prefix_missing/main.ts @@ -0,0 +1,3 @@ +import fs from "fs"; + +console.log(fs.writeFile); diff --git a/cli/tests/testdata/run/node_prefix_missing/main.ts.out b/cli/tests/testdata/run/node_prefix_missing/main.ts.out new file mode 100644 index 000000000..fd19ed55f --- /dev/null +++ b/cli/tests/testdata/run/node_prefix_missing/main.ts.out @@ -0,0 +1,3 @@ +error: Relative import path "fs" not prefixed with / or ./ or ../ +If you want to use a built-in Node module, add a "node:" prefix (ex. "node:fs"). + at file:///[WILDCARD]/main.ts:1:16 |