We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d3feb7 commit f236372Copy full SHA for f236372
2 files changed
packages/vitest/src/node/project.ts
@@ -545,6 +545,10 @@ export class TestProject {
545
{
546
...options,
547
coverage: this.vitest.config.coverage,
548
+ experimental: {
549
+ ...this.vitest.config.experimental,
550
+ importDurations: this.vitest.config.experimental.importDurations,
551
+ },
552
},
553
server.config,
554
)
packages/vitest/src/node/projects/resolveProjects.ts
@@ -59,7 +59,7 @@ export async function resolveProjects(
59
'inspectBrk',
60
'fileParallelism',
61
'tagsFilter',
62
- 'experimental',
+ // 'experimental',
63
] as const
64
65
const cliOverrides = overridesOptions.reduce((acc, name) => {
0 commit comments