Skip to content

Commit

Permalink
generate-blueprint: drop vitest.test-setup.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
mshima committed Sep 22, 2024
1 parent e918e1e commit 29f6bdf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
5 changes: 4 additions & 1 deletion generators/generate-blueprint/generator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,10 @@ export default class extends BaseGenerator {
get writing() {
return this.asWritingTaskGroup({
async cleanup({ control }) {
await control.cleanupFiles({ '8.5.1': ['.eslintrc.json'] });
await control.cleanupFiles({
'8.5.1': ['.eslintrc.json'],
'8.7.2': ['vitest.test-setup.ts'],
});
},
skipWorkflows() {
if (this.skipWorkflows) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,5 @@ export default defineConfig({
pool: 'forks',
hookTimeout: 20000,
exclude: [...defaultExclude.filter(val => val !== '**/cypress/**'), '**/templates/**', '**/resources/**'],
setupFiles: ['./vitest.test-setup.ts'],
},
});

This file was deleted.

0 comments on commit 29f6bdf

Please sign in to comment.