Skip to content

Commit e5a6477

Browse files
committed
Fix tests
1 parent afb61fa commit e5a6477

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.config/typedoc.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,9 @@
1515
"entryPoints": ["../src/index.ts"],
1616
"excludeExternals": true,
1717
"excludeInternal": false,
18-
"excludePrivate": true,
18+
// "excludePrivate": true,
1919
"excludeReferences": true,
20+
"jsDocCompatibility": false,
2021
"treatWarningsAsErrors": false,
2122
"validation": {
2223
"notExported": true,

src/test/comments.test.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1212,7 +1212,12 @@ describe("Comment Parser", () => {
12121212
"@event",
12131213
"@packageDocumentation",
12141214
]),
1215-
jsDocCompatibility: { defaultTag: true, exampleTag: true },
1215+
jsDocCompatibility: {
1216+
defaultTag: true,
1217+
exampleTag: true,
1218+
ignoreUnescapedBraces: false,
1219+
inheritDocTag: false,
1220+
},
12161221
};
12171222

12181223
it("Should rewrite @inheritdoc to @inheritDoc", () => {

0 commit comments

Comments
 (0)