vitest 0.5.1 → 0.5.4
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/cli-api-682b9694.js +10512 -0
- package/dist/cli.js +19 -1194
- package/dist/config.d.ts +2 -0
- package/dist/{diff-9b6e405f.js → diff-d3ddd21a.js} +3 -3
- package/dist/entry.js +10 -7
- package/dist/{globals-a8ef1d11.js → globals-75ad6839.js} +5 -5
- package/dist/{index-6fc76077.js → index-013ecdfe.js} +4 -4
- package/dist/{index-82d1238b.js → index-072c45fd.js} +5 -5
- package/dist/index-0996637f.js +1111 -0
- package/dist/index-0bdb518d.js +42 -0
- package/dist/{index-8241b65e.js → index-1945a7c3.js} +4 -5
- package/dist/index.d.ts +21 -2
- package/dist/index.js +4 -4
- package/dist/node.d.ts +11 -1
- package/dist/node.js +19 -15
- package/dist/{setup-e1322df2.js → setup-047a81dd.js} +3 -3
- package/dist/{source-map-1d79467f.js → source-map-b4f7fd10.js} +2 -2
- package/dist/vi-a4ac529d.js +5946 -0
- package/dist/worker.js +1 -1
- package/package.json +3 -3
- package/dist/create-7fef55ec.js +0 -9318
- package/dist/index-3a7599dc.js +0 -333
- package/dist/index-6e709f57.js +0 -782
- package/dist/index-dbe23279.js +0 -42
- package/dist/vi-669f0e0b.js +0 -5943
package/dist/config.d.ts
CHANGED
|
@@ -243,6 +243,7 @@ declare abstract class BaseReporter implements Reporter {
|
|
|
243
243
|
watchFilters?: string[];
|
|
244
244
|
isTTY: boolean;
|
|
245
245
|
ctx: Vitest;
|
|
246
|
+
constructor();
|
|
246
247
|
onInit(ctx: Vitest): void;
|
|
247
248
|
relative(path: string): string;
|
|
248
249
|
onFinished(files?: File[]): Promise<void>;
|
|
@@ -253,6 +254,7 @@ declare abstract class BaseReporter implements Reporter {
|
|
|
253
254
|
onServerRestart(): void;
|
|
254
255
|
reportSummary(files: File[]): Promise<void>;
|
|
255
256
|
private printTaskErrors;
|
|
257
|
+
registerUnhandledRejection(): void;
|
|
256
258
|
}
|
|
257
259
|
|
|
258
260
|
interface ListRendererOptions {
|