File tree Expand file tree Collapse file tree 3 files changed +17
-3
lines changed Expand file tree Collapse file tree 3 files changed +17
-3
lines changed Original file line number Diff line number Diff line change @@ -83,9 +83,10 @@ github_checks:
8383ignore :
8484 - ' **/__mocks__/**'
8585 - ' **/__tests__/**'
86+ - ' **/interfaces/'
87+ - ' **/types/'
8688 - ' **/index.ts'
87- - src/interfaces/
88- - src/types/
89+ - ' !src/index.ts'
8990
9091profiling :
9192 critical_files_paths :
Original file line number Diff line number Diff line change 1+ /**
2+ * @file E2E Tests - api
3+ * @module docast-util-from-docs/tests/e2e/api
4+ */
5+
6+ import * as testSubject from '../index'
7+
8+ describe ( 'e2e:docast-util-from-docs' , ( ) => {
9+ it ( 'should expose public api' , ( ) => {
10+ expect ( testSubject ) . to . have . keys ( [ 'fromDocs' ] )
11+ } )
12+ } )
Original file line number Diff line number Diff line change @@ -63,7 +63,8 @@ const config: UserConfigExport = defineConfig((env: ConfigEnv): UserConfig => {
6363 '**/__tests__/**' ,
6464 '**/interfaces/' ,
6565 '**/types/' ,
66- '**/index.ts'
66+ '**/index.ts' ,
67+ '!src/index.ts'
6768 ] ,
6869 extension : [ '.ts' ] ,
6970 include : [ 'src' ] ,
You can’t perform that action at this time.
0 commit comments