Skip to content

Commit 62196d1

Browse files
committed
refactor(fix): rename test files to match naming convention
- Rename cmd-fix.test.mts → cmd-fix.integration.test.mts - File contains integration tests that spawn CLI process - Rename cmd-fix-e2e.test.mts → cmd-fix.e2e.test.mts - Use dot notation for consistency with .integration pattern - Update vitest.e2e.config.mts include pattern to match *.e2e.test.mts - Update vitest.config.mts exclude pattern to match *.e2e.test.mts
1 parent 7ccf45d commit 62196d1

File tree

4 files changed

+2
-2
lines changed

4 files changed

+2
-2
lines changed
File renamed without changes.
File renamed without changes.

vitest.config.mts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export default defineConfig({
1111
'**/.{idea,git,cache,output,temp}/**',
1212
'**/{karma,rollup,webpack,vite,vitest,jest,ava,babel,nyc,cypress,tsup,build,eslint,prettier}.config.*',
1313
// Exclude E2E tests from regular test runs.
14-
'**/*-e2e.test.mts',
14+
'**/*.e2e.test.mts',
1515
],
1616
coverage: {
1717
exclude: [

vitest.e2e.config.mts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default defineConfig({
55
preserveSymlinks: false,
66
},
77
test: {
8-
include: ['**/*-e2e.test.mts'],
8+
include: ['**/*.e2e.test.mts'],
99
coverage: {
1010
exclude: [
1111
'**/{eslint,vitest}.config.*',

0 commit comments

Comments
 (0)