Skip to content

Commit adae84f

Browse files
committed
fix: update test
1 parent c7db455 commit adae84f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/index.spec.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,13 @@ import { config } from './index.js';
55
describe('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
});

0 commit comments

Comments
 (0)