vitest 0.7.4 → 0.7.7

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
@@ -358,6 +358,7 @@ interface UserConsoleLog {
358
358
  time: number;
359
359
  }
360
360
  interface Position {
361
+ source?: string;
361
362
  line: number;
362
363
  column: number;
363
364
  }
@@ -719,6 +720,10 @@ interface InlineConfig {
719
720
  * Custom reporter for output
720
721
  */
721
722
  reporters?: Arrayable<BuiltinReporters | Reporter>;
723
+ /**
724
+ * diff output length
725
+ */
726
+ outputTruncateLength?: number;
722
727
  /**
723
728
  * Write test results to a file when the --reporter=json option is also specified
724
729
  */