Skip to content

Commit 7bcaca2

Browse files
authored
chore: Skip core classes by default (#100)
1 parent 525b32b commit 7bcaca2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/test-utils/index.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,7 @@ export function documentTestUtils(options: TestUtilsDocumenterOptions): TestUtil
3838
if (!selectorsUtilsFile) {
3939
throw new Error(`File '${selectorsUtilsFile}' not found`);
4040
}
41-
// TODO: switch to false after all consumers updated
42-
const includeCoreMethods = options.includeCoreMethods ?? true;
41+
const includeCoreMethods = options.includeCoreMethods ?? false;
4342
return {
4443
domDefinitions: extractDocumentation(
4544
domUtilsFile,

0 commit comments

Comments
 (0)