diff options
author | Casper Beyer <caspervonb@pm.me> | 2021-07-30 03:03:06 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-29 21:03:06 +0200 |
commit | c276b52828c3ea302a3870d0a4cfdc8904da0e93 (patch) | |
tree | 62cd3793b80b98e85023388f6c8cc2da5bb49754 /cli/tests/integration/test_tests.rs | |
parent | d0ec29b493f7b0d201368e97f7f89f305c1a7d86 (diff) |
feat: type check codeblocks in Markdown file with "deno test --doc" (#11421)
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 1f9df3fd5..1cb38562f 100644 --- a/cli/tests/integration/test_tests.rs +++ b/cli/tests/integration/test_tests.rs @@ -55,6 +55,12 @@ itest!(doc { output: "test/doc.out", }); +itest!(doc_markdown { + args: "test --doc --allow-all test/doc_markdown", + exit_code: 1, + output: "test/doc_markdown.out", +}); + itest!(quiet { args: "test --quiet test/quiet.ts", exit_code: 0, |