File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -5,14 +5,13 @@ import { config } from './index.js';
55describe ( 'Module exports' , ( ) => {
66 test ( 'should export expected elements' , ( ) => {
77 expect ( config ) . toBeInstanceOf ( Function ) ;
8- const configValue = config ( { } ) ;
8+ const configValue = config ( ) ;
99 expect ( configValue [ '.commitlintrc.yaml' ] ) . toBeDefined ( ) ;
1010 expect ( configValue [ 'eslint.config.mts' ] ) . toBeDefined ( ) ;
1111 expect ( configValue [ 'tsconfig.json' ] ) . toBeDefined ( ) ;
1212 expect ( configValue [ 'tsconfig.build.json' ] ) . toBeDefined ( ) ;
1313 expect ( configValue [ '.prettierrc.yaml' ] ) . toBeDefined ( ) ;
1414 expect ( configValue [ 'vitest.config.ts' ] ) . toBeDefined ( ) ;
15- expect ( configValue [ '.github/actionlint.yml' ] ) . toBeDefined ( ) ;
1615 expect ( configValue [ 'tsconfig.tsup.json' ] ) . not . toBeDefined ( ) ;
1716 } ) ;
1817} ) ;
You can’t perform that action at this time.
0 commit comments