summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/test/doc_markdown
diff options
context:
space:
mode:
authorCasper Beyer <caspervonb@pm.me>2021-08-13 02:10:14 +0800
committerGitHub <noreply@github.com>2021-08-12 20:10:14 +0200
commit3dff757927852aff3110e72934f891f029bb8a8d (patch)
tree9a6979333573941a842a736ffee71109d2313e2d /cli/tests/testdata/test/doc_markdown
parenteae9d5b647b89e547b4229b8b794d91753c9ec95 (diff)
fix(cli): allow specifiers of unknown media types with test command (#11652)
Diffstat (limited to 'cli/tests/testdata/test/doc_markdown')
-rw-r--r--cli/tests/testdata/test/doc_markdown/doc.md25
1 files changed, 0 insertions, 25 deletions
diff --git a/cli/tests/testdata/test/doc_markdown/doc.md b/cli/tests/testdata/test/doc_markdown/doc.md
deleted file mode 100644
index e5afb841b..000000000
--- a/cli/tests/testdata/test/doc_markdown/doc.md
+++ /dev/null
@@ -1,25 +0,0 @@
-# Documentation
-
-The following block does not have a language attribute and should be ignored:
-
-```
-This is a fenced block without attributes, it's invalid and it should be ignored.
-```
-
-The following block should be given a js extension on extraction:
-
-```js
-console.log("js");
-```
-
-The following block should be given a ts extension on extraction:
-
-```ts
-console.log("ts");
-```
-
-The following example will trigger the type-checker to fail:
-
-```ts
-const a: string = 42;
-```