summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/test/markdown.md
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/testdata/test/markdown.md')
-rw-r--r--cli/tests/testdata/test/markdown.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/cli/tests/testdata/test/markdown.md b/cli/tests/testdata/test/markdown.md
index e5afb841b..d18dbd108 100644
--- a/cli/tests/testdata/test/markdown.md
+++ b/cli/tests/testdata/test/markdown.md
@@ -18,6 +18,12 @@ The following block should be given a ts extension on extraction:
console.log("ts");
```
+The following example contains the ignore attribute and will be ignored:
+
+```ts ignore
+const value: Invalid = "ignored";
+```
+
The following example will trigger the type-checker to fail:
```ts