diff options
author | Geert-Jan Zwiers <34610306+GJZwiers@users.noreply.github.com> | 2022-03-08 02:10:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-08 02:10:40 +0100 |
commit | e53b6c16bc1d11f6791eb6f4f3d822150d36e278 (patch) | |
tree | d50c513a242227b5b1df36411a2120b669ee4e39 /cli/tests/integration/test_tests.rs | |
parent | c1ff23b20e8accdec12ca3fe173a8a8463182a9c (diff) |
fix(test): typecheck blocks annotated with long js/ts notations (#13785)
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 b19cba8f4..6424dabd0 100644 --- a/cli/tests/integration/test_tests.rs +++ b/cli/tests/integration/test_tests.rs @@ -97,6 +97,12 @@ itest!(markdown_windows { output: "test/markdown_windows.out", }); +itest!(markdown_full_block_names { + args: "test --doc --allow-all test/markdown_full_block_names.md", + exit_code: 1, + output: "test/markdown_full_block_names.out", +}); + itest!(text { args: "test --doc --allow-all test/text.md", exit_code: 0, |