Skip to content

Commit 8a06d08

Browse files
committed
test: Fix test case
1 parent b449e09 commit 8a06d08

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

build-tests/api-extractor-lib3-test/config/api-extractor.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// Disable reporting of `@virtual`, which is reported by default
1010
"@virtual": false,
1111
// Enable reporting of our custom TSDoc tags.
12-
"@preapproved": true,
12+
"@internalRemarks": true,
1313
"@betaDocumentation": true
1414
}
1515
},

build-tests/api-extractor-lib3-test/dist/api-extractor-lib3-test.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import { Lib1Class } from 'api-extractor-lib1-test';
1212
export { Lib1Class }
1313

1414
/**
15-
* @preapproved
15+
* @internalRemarks Internal remarks
1616
* @public
1717
*/
1818
export declare class Lib3Class {

build-tests/api-extractor-lib3-test/etc/api-extractor-lib3-test.api.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { Lib1Class } from 'api-extractor-lib1-test';
88

99
export { Lib1Class }
1010

11-
// @public @preapproved (undocumented)
11+
// @public @internalRemarks (undocumented)
1212
export class Lib3Class {
1313
// @override @betaDocumentation
1414
prop: boolean;

build-tests/api-extractor-lib3-test/src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
export { Lib1Class } from 'api-extractor-lib1-test';
1414

1515
/**
16-
* @preapproved
16+
* @internalRemarks Internal remarks
1717
* @public
1818
*/
1919
export class Lib3Class {

0 commit comments

Comments
 (0)