vitest 0.6.0 → 0.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/config.d.ts CHANGED
@@ -92,7 +92,7 @@ interface DepsHandlingOptions {
92
92
  inline?: (string | RegExp)[];
93
93
  /**
94
94
  * Try to guess the CJS version of a package when it's invalid ESM
95
- * @default true
95
+ * @default false
96
96
  */
97
97
  fallbackCJS?: boolean;
98
98
  }
@@ -532,6 +532,7 @@ interface TaskBase {
532
532
  interface TaskResult {
533
533
  state: TaskState;
534
534
  duration?: number;
535
+ startTime?: number;
535
536
  error?: ErrorWithDiff;
536
537
  hooks?: Partial<Record<keyof SuiteHooks, TaskState>>;
537
538
  }
@@ -664,7 +665,7 @@ interface InlineConfig {
664
665
  * This will significantly improve the performance in huge repo, but might potentially
665
666
  * cause some misalignment if a package have different logic in ESM and CJS mode.
666
667
  *
667
- * @default true
668
+ * @default false
668
669
  */
669
670
  fallbackCJS?: boolean;
670
671
  };