From ade0cd5e97e25896457624a0ec6bf524a5fa5c20 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Thu, 11 Apr 2024 19:00:17 -0400 Subject: fix: upgrade deno_ast related crates (#23187) Had to revert back swc due to https://github.com/swc-project/swc/issues/8840 Fixes: - https://github.com/denoland/deno_lint/pull/1262 - https://github.com/denoland/deno_doc/pull/538 - https://github.com/denoland/deno_doc/pull/537 - https://github.com/denoland/deno_graph/pull/430 - https://github.com/denoland/deno_graph/pull/425 - https://github.com/denoland/deno_graph/pull/432 --- tests/integration/doc_tests.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'tests/integration') diff --git a/tests/integration/doc_tests.rs b/tests/integration/doc_tests.rs index de28edd10..f541f5a18 100644 --- a/tests/integration/doc_tests.rs +++ b/tests/integration/doc_tests.rs @@ -149,10 +149,7 @@ fn deno_doc_html() { 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("~/MyInterface.prop.html").exists()); assert!(temp_dir.path().join("~/MyClass.html").exists()); assert!(temp_dir.path().join("~/MyClass.prototype.html").exists()); assert!(temp_dir -- cgit v1.2.3