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/{chunk-api-setup.6216dca1.js → chunk-api-setup.e1542e10.js} +7 -7
- package/dist/{chunk-integrations-globals.07fd0dd8.js → chunk-integrations-globals.06d5e380.js} +3 -3
- package/dist/{chunk-runtime-chain.26475065.js → chunk-runtime-chain.7032872a.js} +10 -10
- package/dist/{chunk-utils-path.577ffb7b.js → chunk-utils-path.e19c1fff.js} +3 -3
- package/dist/{chunk-utils-source-map.268054ec.js → chunk-utils-source-map.fb8852df.js} +8 -8
- package/dist/{chunk-vite-node-externalize.da9aa773.js → chunk-vite-node-externalize.82d4b8d8.js} +39 -26
- package/dist/{chunk-vite-node-utils.45af7aa1.js → chunk-vite-node-utils.66647e5d.js} +2 -2
- package/dist/cli.js +5 -5
- package/dist/config.d.ts +5 -0
- package/dist/entry.js +10 -10
- package/dist/index.d.ts +5 -0
- package/dist/index.js +2 -2
- package/dist/jest-mock.js +2 -2
- package/dist/node.d.ts +5 -0
- package/dist/node.js +4 -4
- package/dist/worker.js +4 -4
- package/package.json +6 -6
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
|
*/
|