summaryrefslogtreecommitdiff
path: root/cli/tests/integration/doc_tests.rs
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2023-10-26 21:27:50 -0400
committerGitHub <noreply@github.com>2023-10-26 21:27:50 -0400
commit9ec18c35c7e6207fc96d6b2508c3bf37953c4f93 (patch)
tree2e1ae90ab7f4bb79b3d119dd7bc8d5e4beec560b /cli/tests/integration/doc_tests.rs
parent9026f20b2dc0ee97bde3cc6ea8438dafbec5fad3 (diff)
feat(doc): display non-exported types referenced in exported types (#20990)
Upgrades to deno_doc 0.70 which includes the feature for showing non-exported types referenced in exported types as well as a much more advanced deno doc that uses a symbol graph.
Diffstat (limited to 'cli/tests/integration/doc_tests.rs')
-rw-r--r--cli/tests/integration/doc_tests.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/cli/tests/integration/doc_tests.rs b/cli/tests/integration/doc_tests.rs
index 72f5f4314..cdbee845b 100644
--- a/cli/tests/integration/doc_tests.rs
+++ b/cli/tests/integration/doc_tests.rs
@@ -47,6 +47,11 @@ itest!(deno_doc_types_header {
http_server: true,
});
+itest!(deno_doc_referenced_private_types {
+ args: "doc doc/referenced_private_types.ts",
+ output: "doc/referenced_private_types.out",
+});
+
itest!(_060_deno_doc_displays_all_overloads_in_details_view {
args:
"doc doc/060_deno_doc_displays_all_overloads_in_details_view.ts NS.test",