diff options
author | Mohammad Sulaiman <mohammad.sulaiman@exalt.ps> | 2024-09-05 11:09:09 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-05 08:09:09 +0000 |
commit | 49340b96f6b3603186e03f0102b99bc4a34a1b63 (patch) | |
tree | 24a1278efb472a52c58811a62ce9e38bcffc674b /tests/specs/doc/lint_html_success | |
parent | dfc5eec43c481b1eeaa0ad069aeba8b7559d4440 (diff) |
chore: deprecate doc itests (#25452)
Diffstat (limited to 'tests/specs/doc/lint_html_success')
-rw-r--r-- | tests/specs/doc/lint_html_success/__test__.jsonc | 5 | ||||
-rw-r--r-- | tests/specs/doc/lint_html_success/lint_success.ts | 5 | ||||
-rw-r--r-- | tests/specs/doc/lint_html_success/lint_success_html.out | 1 |
3 files changed, 11 insertions, 0 deletions
diff --git a/tests/specs/doc/lint_html_success/__test__.jsonc b/tests/specs/doc/lint_html_success/__test__.jsonc new file mode 100644 index 000000000..64153f1b2 --- /dev/null +++ b/tests/specs/doc/lint_html_success/__test__.jsonc @@ -0,0 +1,5 @@ +{ + "tempDir": true, + "args": "doc --lint --html --name=Library lint_success.ts", + "output": "lint_success_html.out" +} diff --git a/tests/specs/doc/lint_html_success/lint_success.ts b/tests/specs/doc/lint_html_success/lint_success.ts new file mode 100644 index 000000000..42c44b2d7 --- /dev/null +++ b/tests/specs/doc/lint_html_success/lint_success.ts @@ -0,0 +1,5 @@ +/** My test class. */ +export class Test { + /** My property. */ + prop: string; +} diff --git a/tests/specs/doc/lint_html_success/lint_success_html.out b/tests/specs/doc/lint_html_success/lint_success_html.out new file mode 100644 index 000000000..783dd5927 --- /dev/null +++ b/tests/specs/doc/lint_html_success/lint_success_html.out @@ -0,0 +1 @@ +Written 12 files to "./docs/" |