diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2022-08-10 07:27:22 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-10 07:27:22 +1000 |
commit | 1c2ec1f48f2cf9255f0a43f2ec3d15aeee081b33 (patch) | |
tree | ed4d58c05b5f4ed9b19a8e3ae5f840740c7e0988 /cli/tests | |
parent | 1f54d877895ea25258a941818f07c6e84d44a7a2 (diff) |
fix: update deno_graph to fix importing config as JSON module (#15388)
Ref: denoland/deno_graph#166
Diffstat (limited to 'cli/tests')
-rw-r--r-- | cli/tests/testdata/035_cached_only_flag.out | 3 | ||||
-rw-r--r-- | cli/tests/testdata/052_no_remote_flag.out | 3 | ||||
-rw-r--r-- | cli/tests/testdata/060_deno_doc_displays_all_overloads_in_details_view.ts.out | 3 |
3 files changed, 6 insertions, 3 deletions
diff --git a/cli/tests/testdata/035_cached_only_flag.out b/cli/tests/testdata/035_cached_only_flag.out index aad3f2fbc..10c8611fa 100644 --- a/cli/tests/testdata/035_cached_only_flag.out +++ b/cli/tests/testdata/035_cached_only_flag.out @@ -1 +1,4 @@ error: Specifier not found in cache: "http://127.0.0.1:4545/019_media_types.ts", --cached-only is specified. + +Caused by: + Specifier not found in cache: "http://127.0.0.1:4545/019_media_types.ts", --cached-only is specified. diff --git a/cli/tests/testdata/052_no_remote_flag.out b/cli/tests/testdata/052_no_remote_flag.out index c1f9f4e13..712fcf3d6 100644 --- a/cli/tests/testdata/052_no_remote_flag.out +++ b/cli/tests/testdata/052_no_remote_flag.out @@ -1 +1,4 @@ error: A remote specifier was requested: "http://127.0.0.1:4545/019_media_types.ts", but --no-remote is specified. + +Caused by: + A remote specifier was requested: "http://127.0.0.1:4545/019_media_types.ts", but --no-remote is specified. diff --git a/cli/tests/testdata/060_deno_doc_displays_all_overloads_in_details_view.ts.out b/cli/tests/testdata/060_deno_doc_displays_all_overloads_in_details_view.ts.out index ac3026826..2cd36931c 100644 --- a/cli/tests/testdata/060_deno_doc_displays_all_overloads_in_details_view.ts.out +++ b/cli/tests/testdata/060_deno_doc_displays_all_overloads_in_details_view.ts.out @@ -6,7 +6,4 @@ Defined in [WILDCARD]/060_deno_doc_displays_all_overloads_in_details_view.ts:4:2 function test(options: object): void -Defined in [WILDCARD]/060_deno_doc_displays_all_overloads_in_details_view.ts:5:2 - -function test(name: string | object, fn?: Function): void |