summaryrefslogtreecommitdiff
path: root/docs/testing.md
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2021-04-27 12:44:36 +0200
committerGitHub <noreply@github.com>2021-04-27 12:44:36 +0200
commitbaf7092ea2ac97bee93213ddf639bb9b41f0888e (patch)
treea89f9794f4e1fcb0cd8eae9d1e8058d90668a8f4 /docs/testing.md
parent83770e898e365579dcc30650f706116a312bd9f6 (diff)
remove --unstable flag from CLI features (#10190)
Diffstat (limited to 'docs/testing.md')
-rw-r--r--docs/testing.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/testing.md b/docs/testing.md
index 80af1a810..085e2d093 100644
--- a/docs/testing.md
+++ b/docs/testing.md
@@ -254,13 +254,13 @@ formats by the `deno coverage` tool.
git clone https://github.com/oakserver/oak && cd oak
# Collect your coverage profile with deno test --coverage=<output_directory>
-deno test --coverage=cov_profile --unstable
+deno test --coverage=cov_profile
# From this you can get a pretty printed diff of uncovered lines
-deno coverage --unstable cov_profile
+deno coverage cov_profile
# Or generate an lcov report
-deno coverage --unstable cov_profile --lcov > cov_profile.lcov
+deno coverage cov_profile --lcov > cov_profile.lcov
# Which can then be further processed by tools like genhtml
genhtml -o cov_profile/html cov_profile.lcov