summaryrefslogtreecommitdiff
path: root/cli/tests/integration/test_tests.rs
diff options
context:
space:
mode:
authorGeert-Jan Zwiers <34610306+GJZwiers@users.noreply.github.com>2022-03-11 02:14:32 +0100
committerGitHub <noreply@github.com>2022-03-11 02:14:32 +0100
commit8db3a9546b59fdd5e7203f2e63a828e3c5108e7e (patch)
tree2b3e91d39f7891c69c16d7b62ea6c6f9969a3fb2 /cli/tests/integration/test_tests.rs
parent38e88e32b79cf9605b57751802aef1ebff924d98 (diff)
fix(test): skip typechecking for blocks inside HTML comments (#13889)
Diffstat (limited to 'cli/tests/integration/test_tests.rs')
-rw-r--r--cli/tests/integration/test_tests.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/cli/tests/integration/test_tests.rs b/cli/tests/integration/test_tests.rs
index 6424dabd0..f3cf9ebd0 100644
--- a/cli/tests/integration/test_tests.rs
+++ b/cli/tests/integration/test_tests.rs
@@ -103,6 +103,12 @@ itest!(markdown_full_block_names {
output: "test/markdown_full_block_names.out",
});
+itest!(markdown_ignore_html_comment {
+ args: "test --doc --allow-all test/markdown_with_comment.md",
+ exit_code: 1,
+ output: "test/markdown_with_comment.out",
+});
+
itest!(text {
args: "test --doc --allow-all test/text.md",
exit_code: 0,