summaryrefslogtreecommitdiff
path: root/tests/integration/doc_tests.rs
diff options
context:
space:
mode:
authorLeo Kettmeir <crowlkats@toaxl.com>2024-03-27 16:25:39 -0700
committerGitHub <noreply@github.com>2024-03-28 00:25:39 +0100
commitdc985954e1c8f8350a40acbae726909eeef39520 (patch)
tree1f9357b89ee314326e6267174f3f670cc0b8f9b4 /tests/integration/doc_tests.rs
parent08d5d32dfccc4dc38c2aa95c81229bf031d3ac7f (diff)
chore: update deno_doc to 0.119.0 (#23103)
Diffstat (limited to 'tests/integration/doc_tests.rs')
-rw-r--r--tests/integration/doc_tests.rs12
1 files changed, 11 insertions, 1 deletions
diff --git a/tests/integration/doc_tests.rs b/tests/integration/doc_tests.rs
index ca523f07f..de28edd10 100644
--- a/tests/integration/doc_tests.rs
+++ b/tests/integration/doc_tests.rs
@@ -139,15 +139,25 @@ fn deno_doc_html() {
.run();
output.assert_exit_code(0);
- assert_contains!(output.stderr(), "Written 10 files to");
+ assert_contains!(output.stderr(), "Written 14 files to");
assert!(temp_dir.path().join("all_symbols.html").exists());
assert!(temp_dir.path().join("index.html").exists());
assert!(temp_dir.path().join("fuse.js").exists());
assert!(temp_dir.path().join("page.css").exists());
+ assert!(temp_dir.path().join("script.js").exists());
assert!(temp_dir.path().join("search.js").exists());
assert!(temp_dir.path().join("search_index.js").exists());
assert!(temp_dir.path().join("styles.css").exists());
assert!(temp_dir.path().join("~/MyInterface.html").exists());
+ assert!(temp_dir
+ .path()
+ .join("~/MyInterface.prototype.prop.html")
+ .exists());
assert!(temp_dir.path().join("~/MyClass.html").exists());
+ assert!(temp_dir.path().join("~/MyClass.prototype.html").exists());
+ assert!(temp_dir
+ .path()
+ .join("~/MyClass.prototype.prop.html")
+ .exists());
assert!(temp_dir.path().join("~/index.html").exists());
}