File tree 3 files changed +17
-3
lines changed
3 files changed +17
-3
lines changed Original file line number Diff line number Diff line change @@ -83,9 +83,10 @@ github_checks:
83
83
ignore :
84
84
- ' **/__mocks__/**'
85
85
- ' **/__tests__/**'
86
+ - ' **/interfaces/'
87
+ - ' **/types/'
86
88
- ' **/index.ts'
87
- - src/interfaces/
88
- - src/types/
89
+ - ' !src/index.ts'
89
90
90
91
profiling :
91
92
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 => {
63
63
'**/__tests__/**' ,
64
64
'**/interfaces/' ,
65
65
'**/types/' ,
66
- '**/index.ts'
66
+ '**/index.ts' ,
67
+ '!src/index.ts'
67
68
] ,
68
69
extension : [ '.ts' ] ,
69
70
include : [ 'src' ] ,
You can’t perform that action at this time.
0 commit comments