summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/test/markdown_with_comment.md
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/testdata/test/markdown_with_comment.md')
-rw-r--r--cli/tests/testdata/test/markdown_with_comment.md36
1 files changed, 0 insertions, 36 deletions
diff --git a/cli/tests/testdata/test/markdown_with_comment.md b/cli/tests/testdata/test/markdown_with_comment.md
deleted file mode 100644
index 886e88103..000000000
--- a/cli/tests/testdata/test/markdown_with_comment.md
+++ /dev/null
@@ -1,36 +0,0 @@
-# Documentation
-
-The following examples are inside HTML comments and will not trigger the
-type-checker:
-
-<!-- ```ts ignore
-const value: Invalid = "ignored";
-``` -->
-
-<!--
-```ts
-const a: string = 42;
-```
--->
-
-<!--
-
-This is a comment.
-
-```ts
-const a: string = 42;
-```
-
-Something something more comments.
-
-```typescript
-const a: boolean = "true";
-```
-
--->
-
-The following example will trigger the type-checker to fail:
-
-```ts
-const a: string = 42;
-```