diff options
author | Geert-Jan Zwiers <34610306+GJZwiers@users.noreply.github.com> | 2021-11-15 15:58:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-15 09:58:04 -0500 |
commit | 58e7b290dccbf06abb882daf2ae2b4c1df96f73f (patch) | |
tree | 5a404da1b79629758195dd5c3bb103fe30bddaa9 /cli/tests/integration/test_tests.rs | |
parent | dd91ecef502456ba39495d8e178f8101a87c0e34 (diff) |
fix(test): support typechecking docs with CRLF line endings (#12748)
Diffstat (limited to 'cli/tests/integration/test_tests.rs')
-rw-r--r-- | cli/tests/integration/test_tests.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cli/tests/integration/test_tests.rs b/cli/tests/integration/test_tests.rs index d4412191e..e5d3fd358 100644 --- a/cli/tests/integration/test_tests.rs +++ b/cli/tests/integration/test_tests.rs @@ -85,6 +85,12 @@ itest!(markdown { output: "test/markdown.out", }); +itest!(markdown_windows { + args: "test --doc --allow-all test/markdown_windows.md", + exit_code: 1, + output: "test/markdown_windows.out", +}); + itest!(text { args: "test --doc --allow-all test/text.md", exit_code: 0, |