Skip to content

Commit 9ed9f01

Browse files
committed
Update changelog
Also tweak how issueTests works, pre1994 reads better than preGh1994
1 parent c14857e commit 9ed9f01

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,11 @@
99
### Bug Fixes
1010

1111
- Fixed missing `sources` property on signature reflections #1996.
12+
- `excludeNotDocumented` will no longer remove functions/methods/accessors which are documented, #1994.
1213

1314
### Thanks!
1415

16+
- @cary-hu
1517
- @chadhietala
1618

1719
## v0.23.7 (2022-07-09)

src/test/converter2.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ describe("Converter2", () => {
7878
} else {
7979
runTest(
8080
name,
81-
issueTests[`pre${entry[0].toUpperCase()}${entry.slice(1)}`],
81+
issueTests[`pre${entry.slice(2)}`],
8282
join("issues", entry),
8383
check as (
8484
project: ProjectReflection,

src/test/issueTests.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -609,7 +609,7 @@ export const issueTests: {
609609
logger.expectNoOtherMessages();
610610
},
611611

612-
preGh1994(app) {
612+
pre1994(app) {
613613
app.options.setValue("excludeNotDocumented", true);
614614
},
615615
gh1994(project) {

0 commit comments

Comments
 (0)