Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerrit0 committed Apr 23, 2023
1 parent afb61fa commit e5a6477
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .config/typedoc.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@
"entryPoints": ["../src/index.ts"],
"excludeExternals": true,
"excludeInternal": false,
"excludePrivate": true,
// "excludePrivate": true,
"excludeReferences": true,
"jsDocCompatibility": false,
"treatWarningsAsErrors": false,
"validation": {
"notExported": true,
Expand Down
7 changes: 6 additions & 1 deletion src/test/comments.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1212,7 +1212,12 @@ describe("Comment Parser", () => {
"@event",
"@packageDocumentation",
]),
jsDocCompatibility: { defaultTag: true, exampleTag: true },
jsDocCompatibility: {
defaultTag: true,
exampleTag: true,
ignoreUnescapedBraces: false,
inheritDocTag: false,
},
};

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

0 comments on commit e5a6477

Please sign in to comment.