Skip to content

Commit

Permalink
fix: e2e config
Browse files Browse the repository at this point in the history
  • Loading branch information
tea-artist committed Nov 19, 2024
1 parent 3b79a4f commit 7316282
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions apps/nestjs-backend/vitest-e2e.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,23 @@ export default defineConfig({
setupFiles: './vitest-e2e.setup.ts',
testTimeout: timeout,
passWithNoTests: true,
poolOptions: {
threads: {
singleThread: true,
},
forks: {
singleFork: true,
},
},
coverage: {
provider: 'v8',
reportsDirectory: './coverage/e2e',
extension: ['.js', '.ts'],
include: ['src/**/*'],
},
sequence: {
hooks: 'stack',
},
logHeapUsage: true,
reporters: ['verbose'],
include: testFiles,
Expand Down

0 comments on commit 7316282

Please sign in to comment.