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/main.rs | |
parent | d0ec29b493f7b0d201368e97f7f89f305c1a7d86 (diff) |
feat: type check codeblocks in Markdown file with "deno test --doc" (#11421)
Diffstat (limited to 'cli/main.rs')
-rw-r--r-- | cli/main.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/main.rs b/cli/main.rs index f69772437..bb7e03041 100644 --- a/cli/main.rs +++ b/cli/main.rs @@ -1030,7 +1030,7 @@ async fn test_command( test_runner::collect_test_module_specifiers( include.clone(), &cwd, - fs_util::is_supported_ext, + fs_util::is_supported_ext_test, ) } else { test_runner::collect_test_module_specifiers( @@ -1172,7 +1172,7 @@ async fn test_command( test_runner::collect_test_module_specifiers( include.clone(), &cwd, - fs_util::is_supported_ext, + fs_util::is_supported_ext_test, )? } else { Vec::new() @@ -1222,7 +1222,7 @@ async fn test_command( test_runner::collect_test_module_specifiers( include.clone(), &cwd, - fs_util::is_supported_ext, + fs_util::is_supported_ext_test, )? } else { Vec::new() |