File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -112,6 +112,9 @@ export function WorkspaceVitestPlugin(
112112 if ( testConfig . experimental ?. nodeLoader == null && project . vitest . config . experimental ?. nodeLoader != null ) {
113113 vitestConfig . experimental . nodeLoader = project . vitest . config . experimental . nodeLoader
114114 }
115+ if ( testConfig . experimental ?. importDurations == null && project . vitest . config . experimental ?. importDurations != null ) {
116+ vitestConfig . experimental . importDurations = project . vitest . config . experimental . importDurations
117+ }
115118
116119 return {
117120 base : '/' ,
Original file line number Diff line number Diff line change @@ -59,7 +59,6 @@ export async function resolveProjects(
5959 'inspectBrk' ,
6060 'fileParallelism' ,
6161 'tagsFilter' ,
62- 'experimental' ,
6362 ] as const
6463
6564 const cliOverrides = overridesOptions . reduce ( ( acc , name ) => {
You can’t perform that action at this time.
0 commit comments