vitest 2.1.0-beta.5 → 2.1.0-beta.6
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/LICENSE.md +29 -0
- package/dist/browser.d.ts +4 -3
- package/dist/browser.js +2 -2
- package/dist/chunks/{RandomSequencer.B4M2ux5b.js → RandomSequencer.CjkAy_bL.js} +67 -21
- package/dist/chunks/{base.BYvKfYzm.js → base.B-9RAXb6.js} +1 -1
- package/dist/chunks/{cac.DosbLiJg.js → cac.BZlOqtiQ.js} +5 -5
- package/dist/chunks/{cli-api.D8zgNrBU.js → cli-api.B-2f6g4d.js} +7525 -7355
- package/dist/chunks/{constants.CaAN7icJ.js → constants.fzPh7AOq.js} +1 -1
- package/dist/chunks/{coverage.CqfT4xaf.js → coverage.zlNdAMHK.js} +5 -3
- package/dist/chunks/{creator.COdKw_ZN.js → creator.D0TxjnLa.js} +5 -2
- package/dist/chunks/{environment.0M5R1SX_.d.ts → environment.C5eAp3K6.d.ts} +1 -1
- package/dist/chunks/{globals.DRPLtPOv.js → globals.Br36EZIp.js} +3 -3
- package/dist/chunks/{index.Dx3f477d.js → index.C4LZENmc.js} +4432 -4422
- package/dist/chunks/index.CWhwfxXK.js +835 -0
- package/dist/chunks/{index.CxWPpGJz.js → index.dWDhoZDV.js} +2 -2
- package/dist/chunks/{index.CNZXZ9PJ.js → index.m3Xip5Zz.js} +1 -1
- package/dist/chunks/{reporters.DbwOGCsU.d.ts → reporters.B0Ao6Zu1.d.ts} +134 -117
- package/dist/chunks/{resolveConfig.RHsAM2_Q.js → resolveConfig.C0vpvVRF.js} +42 -33
- package/dist/chunks/{runBaseTests.BAhL8UH_.js → runBaseTests.Cf8lGnUq.js} +5 -5
- package/dist/chunks/{setup-common.KBrCO5LJ.js → setup-common.B7uEQsGB.js} +1 -1
- package/dist/chunks/{vi.B6QZ938s.js → vi.DBepMgvg.js} +9 -0
- package/dist/chunks/vite.Bvz2vSw0.d.ts +11 -0
- package/dist/chunks/{worker.BANO5ak1.d.ts → worker.CTdJUeeB.d.ts} +3 -2
- package/dist/chunks/{worker.Cx2xE71X.d.ts → worker.DTM-0OlZ.d.ts} +1 -1
- package/dist/cli.js +2 -2
- package/dist/config.cjs +1 -0
- package/dist/config.d.ts +70 -2
- package/dist/config.js +1 -0
- package/dist/coverage.d.ts +4 -3
- package/dist/coverage.js +27 -3
- package/dist/environments.d.ts +2 -2
- package/dist/execute.d.ts +2 -2
- package/dist/index.d.ts +11 -6
- package/dist/index.js +3 -3
- package/dist/node.d.ts +17 -7
- package/dist/node.js +39 -36
- package/dist/reporters.d.ts +2 -2
- package/dist/reporters.js +5 -5
- package/dist/runners.js +1 -1
- package/dist/workers/forks.js +1 -1
- package/dist/workers/runVmTests.js +5 -5
- package/dist/workers/threads.js +1 -1
- package/dist/workers.d.ts +4 -16
- package/dist/workers.js +1 -1
- package/package.json +12 -12
- package/dist/chunks/index.DNUmWFkO.js +0 -319
|
@@ -5,16 +5,16 @@ import '@vitest/runner/utils';
|
|
|
5
5
|
import { getSafeTimers } from '@vitest/utils';
|
|
6
6
|
import { g as getWorkerState } from './utils.Ck2hJTRs.js';
|
|
7
7
|
import './env.CmHVDJnw.js';
|
|
8
|
-
import { a as globalExpect, r as resetModules, v as vi } from './vi.
|
|
9
|
-
import { a as startCoverageInsideWorker, s as stopCoverageInsideWorker } from './coverage.
|
|
10
|
-
import { a as resolveSnapshotEnvironment, s as setupChaiConfig, r as resolveTestRunner } from './index.
|
|
8
|
+
import { a as globalExpect, r as resetModules, v as vi } from './vi.DBepMgvg.js';
|
|
9
|
+
import { a as startCoverageInsideWorker, s as stopCoverageInsideWorker } from './coverage.zlNdAMHK.js';
|
|
10
|
+
import { a as resolveSnapshotEnvironment, s as setupChaiConfig, r as resolveTestRunner } from './index.dWDhoZDV.js';
|
|
11
11
|
import { createRequire } from 'node:module';
|
|
12
12
|
import util from 'node:util';
|
|
13
13
|
import timers from 'node:timers';
|
|
14
14
|
import { installSourcemapsSupport } from 'vite-node/source-map';
|
|
15
15
|
import { KNOWN_ASSET_TYPES } from 'vite-node/constants';
|
|
16
|
-
import { V as VitestIndex } from './index.
|
|
17
|
-
import { s as setupCommonEnv } from './setup-common.
|
|
16
|
+
import { V as VitestIndex } from './index.m3Xip5Zz.js';
|
|
17
|
+
import { s as setupCommonEnv } from './setup-common.B7uEQsGB.js';
|
|
18
18
|
import { c as closeInspector } from './inspector.70d6emsh.js';
|
|
19
19
|
import 'std-env';
|
|
20
20
|
import 'chai';
|
|
@@ -13,7 +13,7 @@ async function setupCommonEnv(config) {
|
|
|
13
13
|
globalSetup = true;
|
|
14
14
|
setSafeTimers();
|
|
15
15
|
if (config.globals) {
|
|
16
|
-
(await import('./globals.
|
|
16
|
+
(await import('./globals.Br36EZIp.js')).registerApiGlobally();
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
19
|
function setupDefines(defines) {
|
|
@@ -3228,6 +3228,11 @@ class FakeTimers {
|
|
|
3228
3228
|
await this._clock.tickAsync(msToRun);
|
|
3229
3229
|
}
|
|
3230
3230
|
}
|
|
3231
|
+
advanceTimersToNextFrame() {
|
|
3232
|
+
if (this._checkFakeTimers()) {
|
|
3233
|
+
this._clock.runToFrame();
|
|
3234
|
+
}
|
|
3235
|
+
}
|
|
3231
3236
|
runAllTicks() {
|
|
3232
3237
|
if (this._checkFakeTimers()) {
|
|
3233
3238
|
this._clock.runMicrotasks();
|
|
@@ -3555,6 +3560,10 @@ function createVitest() {
|
|
|
3555
3560
|
await timers().advanceTimersToNextTimerAsync();
|
|
3556
3561
|
return utils;
|
|
3557
3562
|
},
|
|
3563
|
+
advanceTimersToNextFrame() {
|
|
3564
|
+
timers().advanceTimersToNextFrame();
|
|
3565
|
+
return utils;
|
|
3566
|
+
},
|
|
3558
3567
|
getTimerCount() {
|
|
3559
3568
|
return timers().getTimerCount();
|
|
3560
3569
|
},
|
|
@@ -2,9 +2,10 @@ import { FetchResult, ViteNodeResolveId, RawSourceMap, ModuleCacheMap } from 'vi
|
|
|
2
2
|
import { File, TaskResultPack, CancelReason, Task } from '@vitest/runner';
|
|
3
3
|
import { S as SerializedConfig } from './config.CHuotKvS.js';
|
|
4
4
|
import { SnapshotResult } from '@vitest/snapshot';
|
|
5
|
-
import { T as TransformMode, U as UserConsoleLog, A as AfterSuiteRunMeta, E as Environment } from './environment.
|
|
5
|
+
import { T as TransformMode, U as UserConsoleLog, A as AfterSuiteRunMeta, E as Environment } from './environment.C5eAp3K6.js';
|
|
6
6
|
|
|
7
|
-
type
|
|
7
|
+
type Promisable<T> = T | Promise<T>;
|
|
8
|
+
type MockFactoryWithHelper<M = unknown> = (importOriginal: <T extends M = M>() => Promise<T>) => Promisable<Partial<M>>;
|
|
8
9
|
type MockFactory = () => any;
|
|
9
10
|
type MockMap = Map<string, Record<string, string | null | MockFactory>>;
|
|
10
11
|
interface PendingSuiteMock {
|
package/dist/cli.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { c as createCLI } from './chunks/cac.
|
|
1
|
+
import { c as createCLI } from './chunks/cac.BZlOqtiQ.js';
|
|
2
2
|
import 'pathe';
|
|
3
3
|
import 'events';
|
|
4
4
|
import 'tinyrainbow';
|
|
5
5
|
import './chunks/base.BH-FAiX7.js';
|
|
6
6
|
import '@vitest/utils';
|
|
7
|
-
import './chunks/constants.
|
|
7
|
+
import './chunks/constants.fzPh7AOq.js';
|
|
8
8
|
|
|
9
9
|
createCLI().parse();
|
package/dist/config.cjs
CHANGED
package/dist/config.d.ts
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
|
-
|
|
1
|
+
import './chunks/vite.Bvz2vSw0.js';
|
|
2
|
+
import { ConfigEnv, UserConfig } from 'vite';
|
|
2
3
|
export { ConfigEnv, Plugin, UserConfig, mergeConfig } from 'vite';
|
|
4
|
+
import { R as ResolvedCoverageOptions, b as CoverageV8Options, U as UserWorkspaceConfig, c as UserProjectConfigFn, d as UserProjectConfigExport, W as WorkspaceProjectConfiguration } from './chunks/reporters.B0Ao6Zu1.js';
|
|
3
5
|
import '@vitest/runner';
|
|
4
6
|
import '@vitest/pretty-format';
|
|
5
7
|
import './chunks/config.CHuotKvS.js';
|
|
6
8
|
import '@vitest/snapshot';
|
|
7
9
|
import '@vitest/snapshot/environment';
|
|
8
10
|
import 'vite-node';
|
|
9
|
-
import './chunks/environment.
|
|
11
|
+
import './chunks/environment.C5eAp3K6.js';
|
|
10
12
|
import 'node:stream';
|
|
11
13
|
import 'vite-node/client';
|
|
12
14
|
import '@vitest/snapshot/manager';
|
|
@@ -18,3 +20,69 @@ import 'chai';
|
|
|
18
20
|
import './chunks/benchmark.puBFxyfE.js';
|
|
19
21
|
import '@vitest/runner/utils';
|
|
20
22
|
import 'tinybench';
|
|
23
|
+
|
|
24
|
+
declare const defaultBrowserPort = 63315;
|
|
25
|
+
declare const extraInlineDeps: RegExp[];
|
|
26
|
+
|
|
27
|
+
declare const defaultInclude: string[];
|
|
28
|
+
declare const defaultExclude: string[];
|
|
29
|
+
declare const coverageConfigDefaults: ResolvedCoverageOptions;
|
|
30
|
+
declare const configDefaults: Readonly<{
|
|
31
|
+
allowOnly: boolean;
|
|
32
|
+
isolate: true;
|
|
33
|
+
watch: boolean;
|
|
34
|
+
globals: false;
|
|
35
|
+
environment: "node";
|
|
36
|
+
pool: "forks";
|
|
37
|
+
clearMocks: false;
|
|
38
|
+
restoreMocks: false;
|
|
39
|
+
mockReset: false;
|
|
40
|
+
unstubGlobals: false;
|
|
41
|
+
unstubEnvs: false;
|
|
42
|
+
include: string[];
|
|
43
|
+
exclude: string[];
|
|
44
|
+
teardownTimeout: number;
|
|
45
|
+
forceRerunTriggers: string[];
|
|
46
|
+
update: false;
|
|
47
|
+
reporters: never[];
|
|
48
|
+
silent: false;
|
|
49
|
+
hideSkippedTests: false;
|
|
50
|
+
api: false;
|
|
51
|
+
ui: false;
|
|
52
|
+
uiBase: string;
|
|
53
|
+
open: boolean;
|
|
54
|
+
css: {
|
|
55
|
+
include: never[];
|
|
56
|
+
};
|
|
57
|
+
coverage: CoverageV8Options;
|
|
58
|
+
fakeTimers: {
|
|
59
|
+
loopLimit: number;
|
|
60
|
+
shouldClearNativeTimers: true;
|
|
61
|
+
toFake: ("setTimeout" | "setInterval" | "clearInterval" | "clearTimeout" | "setImmediate" | "clearImmediate" | "Date")[];
|
|
62
|
+
};
|
|
63
|
+
maxConcurrency: number;
|
|
64
|
+
dangerouslyIgnoreUnhandledErrors: false;
|
|
65
|
+
typecheck: {
|
|
66
|
+
checker: "tsc";
|
|
67
|
+
include: string[];
|
|
68
|
+
exclude: string[];
|
|
69
|
+
};
|
|
70
|
+
slowTestThreshold: number;
|
|
71
|
+
disableConsoleIntercept: false;
|
|
72
|
+
}>;
|
|
73
|
+
|
|
74
|
+
type UserConfigFnObject = (env: ConfigEnv) => UserConfig;
|
|
75
|
+
type UserConfigFnPromise = (env: ConfigEnv) => Promise<UserConfig>;
|
|
76
|
+
type UserConfigFn = (env: ConfigEnv) => UserConfig | Promise<UserConfig>;
|
|
77
|
+
type UserConfigExport = UserConfig | Promise<UserConfig> | UserConfigFnObject | UserConfigFnPromise | UserConfigFn;
|
|
78
|
+
declare function defineConfig(config: UserConfig): UserConfig;
|
|
79
|
+
declare function defineConfig(config: Promise<UserConfig>): Promise<UserConfig>;
|
|
80
|
+
declare function defineConfig(config: UserConfigFnObject): UserConfigFnObject;
|
|
81
|
+
declare function defineConfig(config: UserConfigExport): UserConfigExport;
|
|
82
|
+
declare function defineProject(config: UserWorkspaceConfig): UserWorkspaceConfig;
|
|
83
|
+
declare function defineProject(config: Promise<UserWorkspaceConfig>): Promise<UserWorkspaceConfig>;
|
|
84
|
+
declare function defineProject(config: UserProjectConfigFn): UserProjectConfigFn;
|
|
85
|
+
declare function defineProject(config: UserProjectConfigExport): UserProjectConfigExport;
|
|
86
|
+
declare function defineWorkspace(config: WorkspaceProjectConfiguration[]): WorkspaceProjectConfiguration[];
|
|
87
|
+
|
|
88
|
+
export { type UserConfigExport, type UserConfigFn, type UserConfigFnObject, type UserConfigFnPromise, UserProjectConfigExport, UserProjectConfigFn, UserWorkspaceConfig, WorkspaceProjectConfiguration, configDefaults, coverageConfigDefaults, defaultBrowserPort, defaultExclude, defaultInclude, defineConfig, defineProject, defineWorkspace, extraInlineDeps };
|
package/dist/config.js
CHANGED
package/dist/coverage.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import
|
|
1
|
+
import * as vite from 'vite';
|
|
2
|
+
import { B as BaseCoverageOptions, R as ResolvedCoverageOptions, V as Vitest } from './chunks/reporters.B0Ao6Zu1.js';
|
|
2
3
|
import '@vitest/runner';
|
|
3
|
-
import 'vite';
|
|
4
4
|
import '@vitest/pretty-format';
|
|
5
5
|
import './chunks/config.CHuotKvS.js';
|
|
6
6
|
import '@vitest/snapshot';
|
|
7
7
|
import '@vitest/snapshot/environment';
|
|
8
8
|
import 'vite-node';
|
|
9
|
-
import './chunks/environment.
|
|
9
|
+
import './chunks/environment.C5eAp3K6.js';
|
|
10
10
|
import 'node:stream';
|
|
11
11
|
import 'vite-node/client';
|
|
12
12
|
import '@vitest/snapshot/manager';
|
|
@@ -164,6 +164,7 @@ declare class BaseCoverageProvider {
|
|
|
164
164
|
resolveReporters(configReporters: NonNullable<BaseCoverageOptions['reporter']>): ResolvedCoverageOptions['reporter'];
|
|
165
165
|
hasTerminalReporter(reporters: ResolvedCoverageOptions['reporter']): boolean;
|
|
166
166
|
toSlices<T>(array: T[], size: number): T[][];
|
|
167
|
+
createUncoveredFileTransformer(ctx: Vitest): (filename: string) => Promise<vite.TransformResult | null | undefined>;
|
|
167
168
|
}
|
|
168
169
|
|
|
169
170
|
export { BaseCoverageProvider };
|
package/dist/coverage.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { relative } from 'pathe';
|
|
2
|
-
import { m as mm,
|
|
2
|
+
import { m as mm, r as resolveCoverageReporters } from './chunks/resolveConfig.C0vpvVRF.js';
|
|
3
3
|
import 'node:path';
|
|
4
4
|
import 'node:fs';
|
|
5
5
|
import 'node:fs/promises';
|
|
@@ -10,7 +10,7 @@ import 'node:assert';
|
|
|
10
10
|
import 'node:v8';
|
|
11
11
|
import 'node:util';
|
|
12
12
|
import 'tinyrainbow';
|
|
13
|
-
import './chunks/constants.
|
|
13
|
+
import './chunks/constants.fzPh7AOq.js';
|
|
14
14
|
import 'node:os';
|
|
15
15
|
import './chunks/env.CmHVDJnw.js';
|
|
16
16
|
import 'std-env';
|
|
@@ -18,7 +18,7 @@ import '@vitest/runner/utils';
|
|
|
18
18
|
import './chunks/base.BH-FAiX7.js';
|
|
19
19
|
import '@vitest/utils';
|
|
20
20
|
import 'node:crypto';
|
|
21
|
-
import './chunks/RandomSequencer.
|
|
21
|
+
import './chunks/RandomSequencer.CjkAy_bL.js';
|
|
22
22
|
import 'node:perf_hooks';
|
|
23
23
|
import 'execa';
|
|
24
24
|
import '@vitest/utils/source-map';
|
|
@@ -212,6 +212,30 @@ class BaseCoverageProvider {
|
|
|
212
212
|
return chunks;
|
|
213
213
|
}, []);
|
|
214
214
|
}
|
|
215
|
+
createUncoveredFileTransformer(ctx) {
|
|
216
|
+
const servers = [
|
|
217
|
+
...ctx.projects.map((project) => ({
|
|
218
|
+
root: project.config.root,
|
|
219
|
+
vitenode: project.vitenode
|
|
220
|
+
})),
|
|
221
|
+
// Check core last as it will match all files anyway
|
|
222
|
+
{ root: ctx.config.root, vitenode: ctx.vitenode }
|
|
223
|
+
];
|
|
224
|
+
return async function transformFile(filename) {
|
|
225
|
+
let lastError;
|
|
226
|
+
for (const { root, vitenode } of servers) {
|
|
227
|
+
if (!filename.startsWith(root)) {
|
|
228
|
+
continue;
|
|
229
|
+
}
|
|
230
|
+
try {
|
|
231
|
+
return await vitenode.transformRequest(filename);
|
|
232
|
+
} catch (error) {
|
|
233
|
+
lastError = error;
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
throw lastError;
|
|
237
|
+
};
|
|
238
|
+
}
|
|
215
239
|
}
|
|
216
240
|
function resolveGlobThresholds(thresholds) {
|
|
217
241
|
if (!thresholds || typeof thresholds !== "object") {
|
package/dist/environments.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { E as Environment } from './chunks/environment.
|
|
2
|
-
export { a as EnvironmentReturn, V as VmEnvironmentReturn } from './chunks/environment.
|
|
1
|
+
import { E as Environment } from './chunks/environment.C5eAp3K6.js';
|
|
2
|
+
export { a as EnvironmentReturn, V as VmEnvironmentReturn } from './chunks/environment.C5eAp3K6.js';
|
|
3
3
|
|
|
4
4
|
declare const environments: {
|
|
5
5
|
node: Environment;
|
package/dist/execute.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import vm from 'node:vm';
|
|
2
2
|
import { ViteNodeRunner } from 'vite-node/client';
|
|
3
3
|
import { ViteNodeRunnerOptions } from 'vite-node';
|
|
4
|
-
import { P as PendingSuiteMock, f as MockFactory, R as RuntimeRPC, W as WorkerGlobalState, g as MockMap } from './chunks/worker.
|
|
4
|
+
import { P as PendingSuiteMock, f as MockFactory, R as RuntimeRPC, W as WorkerGlobalState, g as MockMap } from './chunks/worker.CTdJUeeB.js';
|
|
5
5
|
import '@vitest/runner';
|
|
6
6
|
import './chunks/config.CHuotKvS.js';
|
|
7
7
|
import '@vitest/pretty-format';
|
|
8
8
|
import '@vitest/snapshot';
|
|
9
9
|
import '@vitest/snapshot/environment';
|
|
10
|
-
import './chunks/environment.
|
|
10
|
+
import './chunks/environment.C5eAp3K6.js';
|
|
11
11
|
|
|
12
12
|
type Key = string | symbol;
|
|
13
13
|
interface MockContext {
|
package/dist/index.d.ts
CHANGED
|
@@ -1,23 +1,24 @@
|
|
|
1
|
-
import
|
|
1
|
+
import './chunks/vite.Bvz2vSw0.js';
|
|
2
2
|
import { Plugin } from '@vitest/pretty-format';
|
|
3
3
|
import { SnapshotState } from '@vitest/snapshot';
|
|
4
4
|
export { SnapshotData, SnapshotMatchOptions, SnapshotResult, SnapshotSerializer, SnapshotStateOptions, SnapshotSummary, SnapshotUpdateState, UncheckedSnapshot } from '@vitest/snapshot';
|
|
5
5
|
import { PromisifyAssertion, Tester, ExpectStatic } from '@vitest/expect';
|
|
6
6
|
export { Assertion, AsymmetricMatchersContaining, ExpectPollOptions, ExpectStatic, JestAssertion } from '@vitest/expect';
|
|
7
|
+
import { e as VitestEnvironment$1, S as SerializedSpec, f as RawErrsMap$1, T as TscErrorInfo$1, g as CollectLineNumbers$1, h as CollectLines$1, i as RootAndTarget$1, j as Context$1, C as CoverageProvider$1, k as ReportContext$1, a as CoverageProviderModule$1, l as CoverageReporter$1, m as CoverageProviderName, n as CoverageOptions$1, R as ResolvedCoverageOptions$1, B as BaseCoverageOptions$1, o as CoverageIstanbulOptions$1, b as CoverageV8Options$1, p as CustomProviderOptions$1, q as Reporter$1, V as Vitest$1, r as BrowserScript$1, s as BrowserConfigOptions$1, t as BuiltinEnvironment$1, P as Pool$1, u as PoolOptions$1, v as CSSModuleScopeStrategy$1, A as ApiConfig$1, w as VitestRunMode$1, D as DepsOptimizationOptions$1, x as TransformModePatterns$1, I as InlineConfig$1, y as TypecheckConfig$1, z as UserConfig$1, E as ResolvedConfig$1, F as ProjectConfig$1, U as UserWorkspaceConfig$1, G as BenchmarkUserOptions$1 } from './chunks/reporters.B0Ao6Zu1.js';
|
|
7
8
|
import { B as BenchmarkResult } from './chunks/benchmark.puBFxyfE.js';
|
|
8
9
|
export { b as BenchFunction, a as Benchmark, c as BenchmarkAPI } from './chunks/benchmark.puBFxyfE.js';
|
|
9
|
-
import { U as UserConsoleLog, P as ProvidedContext, M as ModuleGraphData, b as Awaitable$1, N as Nullable$1, c as Arrayable$1, d as ArgumentsType$1, e as MutableArray$1, C as Constructable$1, O as OnServerRestartHandler$1, a as EnvironmentReturn$1, V as VmEnvironmentReturn$1, E as Environment$1, R as ResolvedTestEnvironment$1, J as JSDOMOptions$1, H as HappyDOMOptions$1, f as EnvironmentOptions$1 } from './chunks/environment.
|
|
10
|
-
export { A as AfterSuiteRunMeta, g as ModuleCache } from './chunks/environment.
|
|
10
|
+
import { U as UserConsoleLog, P as ProvidedContext, M as ModuleGraphData, b as Awaitable$1, N as Nullable$1, c as Arrayable$1, d as ArgumentsType$1, e as MutableArray$1, C as Constructable$1, O as OnServerRestartHandler$1, a as EnvironmentReturn$1, V as VmEnvironmentReturn$1, E as Environment$1, R as ResolvedTestEnvironment$1, J as JSDOMOptions$1, H as HappyDOMOptions$1, f as EnvironmentOptions$1 } from './chunks/environment.C5eAp3K6.js';
|
|
11
|
+
export { A as AfterSuiteRunMeta, g as ModuleCache } from './chunks/environment.C5eAp3K6.js';
|
|
11
12
|
import { TaskPopulated, TaskResultPack, File as File$1, Suite as Suite$1, Test as Test$1, Custom as Custom$1, Task as Task$1, SequenceHooks as SequenceHooks$1, SequenceSetupFiles as SequenceSetupFiles$1 } from '@vitest/runner';
|
|
12
13
|
export { CancelReason, DoneCallback, ExtendedContext, HookCleanupCallback, HookListener, OnTestFailedHandler, RunMode, Custom as RunnerCustomCase, Task as RunnerTask, Test as RunnerTestCase, File as RunnerTestFile, Suite as RunnerTestSuite, RuntimeContext, SuiteAPI, SuiteCollector, SuiteFactory, SuiteHooks, TaskBase, TaskContext, TaskCustomOptions, TaskMeta, TaskResult, TaskResultPack, TaskState, TestAPI, TestContext, TestFunction, TestOptions, afterAll, afterEach, beforeAll, beforeEach, describe, it, onTestFailed, onTestFinished, suite, test } from '@vitest/runner';
|
|
13
14
|
export { b as bench } from './chunks/suite.CcK46U-P.js';
|
|
14
15
|
import { F as FakeTimerInstallOpts, R as RuntimeOptions, S as SerializedConfig } from './chunks/config.CHuotKvS.js';
|
|
15
16
|
export { b as RuntimeConfig, a as SerializedCoverageConfig } from './chunks/config.CHuotKvS.js';
|
|
16
|
-
import { M as MockFactoryWithHelper, a as BirpcReturn } from './chunks/worker.
|
|
17
|
-
export { C as ContextRPC, e as ContextTestEnvironment, c as ResolveIdFunction, b as RunnerRPC, R as RuntimeRPC, W as WorkerGlobalState, d as WorkerRPC } from './chunks/worker.
|
|
17
|
+
import { M as MockFactoryWithHelper, a as BirpcReturn } from './chunks/worker.CTdJUeeB.js';
|
|
18
|
+
export { C as ContextRPC, e as ContextTestEnvironment, c as ResolveIdFunction, b as RunnerRPC, R as RuntimeRPC, W as WorkerGlobalState, d as WorkerRPC } from './chunks/worker.CTdJUeeB.js';
|
|
18
19
|
import { spyOn, fn, MaybeMockedDeep, MaybeMocked, MaybePartiallyMocked, MaybePartiallyMockedDeep, MockInstance } from '@vitest/spy';
|
|
19
20
|
export { Mock, MockContext, MockInstance, Mocked, MockedClass, MockedFunction, MockedObject } from '@vitest/spy';
|
|
20
|
-
export { W as WorkerContext } from './chunks/worker.
|
|
21
|
+
export { W as WorkerContext } from './chunks/worker.DTM-0OlZ.js';
|
|
21
22
|
export { ErrorWithDiff, ParsedStack, SerializedError, TestError } from '@vitest/utils';
|
|
22
23
|
export { DiffOptions } from '@vitest/utils/diff';
|
|
23
24
|
import * as chai from 'chai';
|
|
@@ -1233,6 +1234,10 @@ interface VitestUtils {
|
|
|
1233
1234
|
* Will call next available timer and wait until it's resolved if it was set asynchronously. Useful to make assertions between each timer call.
|
|
1234
1235
|
*/
|
|
1235
1236
|
advanceTimersToNextTimerAsync: () => Promise<VitestUtils>;
|
|
1237
|
+
/**
|
|
1238
|
+
* Similar to [`vi.advanceTimersByTime`](https://vitest.dev/api/vi#vi-advancetimersbytime), but will advance timers by the milliseconds needed to execute callbacks currently scheduled with `requestAnimationFrame`.
|
|
1239
|
+
*/
|
|
1240
|
+
advanceTimersToNextFrame: () => VitestUtils;
|
|
1236
1241
|
/**
|
|
1237
1242
|
* Get the number of waiting timers.
|
|
1238
1243
|
*/
|
package/dist/index.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
export { afterAll, afterEach, beforeAll, beforeEach, describe, it, onTestFailed, onTestFinished, suite, test } from '@vitest/runner';
|
|
2
2
|
export { b as bench } from './chunks/benchmark.C8CRJYG4.js';
|
|
3
|
-
import { d as dist } from './chunks/index.
|
|
4
|
-
export { a as assertType, g as getRunningMode, b as inject, i as isWatchMode } from './chunks/index.
|
|
3
|
+
import { d as dist } from './chunks/index.m3Xip5Zz.js';
|
|
4
|
+
export { a as assertType, g as getRunningMode, b as inject, i as isWatchMode } from './chunks/index.m3Xip5Zz.js';
|
|
5
5
|
export { i as isFirstRun, a as runOnce } from './chunks/run-once.Sxe67Wng.js';
|
|
6
|
-
export { c as createExpect, a as expect, v as vi, b as vitest } from './chunks/vi.
|
|
6
|
+
export { c as createExpect, a as expect, v as vi, b as vitest } from './chunks/vi.DBepMgvg.js';
|
|
7
7
|
import * as chai from 'chai';
|
|
8
8
|
export { chai };
|
|
9
9
|
export { assert, should } from 'chai';
|
package/dist/node.d.ts
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export { B as BaseCoverageOptions,
|
|
1
|
+
import { w as VitestRunMode, z as UserConfig, H as VitestOptions, V as Vitest, E as ResolvedConfig, J as WorkspaceProject, A as ApiConfig, L as Logger, K as TestSequencer, M as WorkspaceSpec, N as TestModule, O as ModuleDiagnostic } from './chunks/reporters.B0Ao6Zu1.js';
|
|
2
|
+
export { B as BaseCoverageOptions, G as BenchmarkUserOptions, a4 as BrowserBuiltinProvider, a5 as BrowserCommand, a6 as BrowserCommandContext, s as BrowserConfigOptions, aa as BrowserOrchestrator, $ as BrowserProvider, _ as BrowserProviderInitializationOptions, a1 as BrowserProviderModule, a3 as BrowserProviderOptions, r as BrowserScript, a7 as BrowserServer, a8 as BrowserServerState, a9 as BrowserServerStateContext, t as BuiltinEnvironment, a0 as CDPSession, v as CSSModuleScopeStrategy, o as CoverageIstanbulOptions, n as CoverageOptions, C as CoverageProvider, a as CoverageProviderModule, l as CoverageReporter, b as CoverageV8Options, p as CustomProviderOptions, D as DepsOptimizationOptions, ad as HTMLOptions, I as InlineConfig, ac as JUnitOptions, ab as JsonOptions, P as Pool, u as PoolOptions, Q as ProcessPool, F as ProjectConfig, k as ReportContext, a2 as ResolvedBrowserOptions, R as ResolvedCoverageOptions, ao as ResolvedProjectConfig, ai as TaskOptions, ae as TestCase, ah as TestCollection, aj as TestDiagnostic, ag as TestProject, ak as TestResult, am as TestResultFailed, al as TestResultPassed, an as TestResultSkipped, Z as TestSequencerConstructor, af as TestSuite, x as TransformModePatterns, g as TypeCheckCollectLineNumbers, h as TypeCheckCollectLines, j as TypeCheckContext, T as TypeCheckErrorInfo, f as TypeCheckRawErrorsMap, i as TypeCheckRootAndTarget, y as TypecheckConfig, U as UserWorkspaceConfig, e as VitestEnvironment, Y as VitestPackageInstaller, X as getFilePoolName } from './chunks/reporters.B0Ao6Zu1.js';
|
|
3
3
|
import { UserConfig as UserConfig$1, Plugin, ResolvedConfig as ResolvedConfig$1 } from 'vite';
|
|
4
4
|
import * as vite from 'vite';
|
|
5
5
|
export { vite as Vite };
|
|
6
6
|
export { createServer, isFileServingAllowed, parseAst, parseAstAsync } from 'vite';
|
|
7
7
|
import { Writable } from 'node:stream';
|
|
8
|
-
import { P as ProvidedContext } from './chunks/environment.
|
|
9
|
-
export { f as EnvironmentOptions, H as HappyDOMOptions, J as JSDOMOptions, O as OnServerRestartHandler } from './chunks/environment.
|
|
10
|
-
import { R as RuntimeRPC } from './chunks/worker.
|
|
8
|
+
import { P as ProvidedContext } from './chunks/environment.C5eAp3K6.js';
|
|
9
|
+
export { f as EnvironmentOptions, H as HappyDOMOptions, J as JSDOMOptions, O as OnServerRestartHandler } from './chunks/environment.C5eAp3K6.js';
|
|
10
|
+
import { R as RuntimeRPC } from './chunks/worker.CTdJUeeB.js';
|
|
11
11
|
import createDebug from 'debug';
|
|
12
|
-
export { W as WorkerContext } from './chunks/worker.
|
|
12
|
+
export { W as WorkerContext } from './chunks/worker.DTM-0OlZ.js';
|
|
13
13
|
export { SequenceHooks, SequenceSetupFiles } from '@vitest/runner';
|
|
14
14
|
export { b as RuntimeConfig } from './chunks/config.CHuotKvS.js';
|
|
15
15
|
import '@vitest/pretty-format';
|
|
@@ -99,4 +99,14 @@ declare class BaseSequencer implements TestSequencer {
|
|
|
99
99
|
sort(files: WorkspaceSpec[]): Promise<WorkspaceSpec[]>;
|
|
100
100
|
}
|
|
101
101
|
|
|
102
|
-
|
|
102
|
+
/**
|
|
103
|
+
* @deprecated Use `TestModule` instead
|
|
104
|
+
*/
|
|
105
|
+
declare const TestFile: typeof TestModule;
|
|
106
|
+
|
|
107
|
+
/**
|
|
108
|
+
* @deprecated Use `ModuleDiagnostic` instead
|
|
109
|
+
*/
|
|
110
|
+
type FileDiagnostic = ModuleDiagnostic;
|
|
111
|
+
|
|
112
|
+
export { ApiConfig, BaseSequencer, type FileDiagnostic, GitNotFoundError, type GlobalSetupContext, ModuleDiagnostic, ResolvedConfig, TestFile, TestModule, TestSequencer, FilesNotFoundError as TestsNotFoundError, UserConfig, Vitest, VitestPlugin, VitestRunMode, WorkspaceProject, WorkspaceSpec, createDebugger, createMethodsRPC, createVitest, distDir, parseCLI, registerConsoleShortcuts, resolveApiServerConfig, resolveConfig, resolveFsAllow, rootDir, startVitest };
|
package/dist/node.js
CHANGED
|
@@ -1,37 +1,47 @@
|
|
|
1
|
-
|
|
2
|
-
export {
|
|
3
|
-
export {
|
|
1
|
+
import { f as TestModule } from './chunks/index.C4LZENmc.js';
|
|
2
|
+
export { e as TestCase, i as TestProject, g as TestSuite } from './chunks/index.C4LZENmc.js';
|
|
3
|
+
export { G as GitNotFoundError, F as TestsNotFoundError, a as VitestPackageInstaller, V as VitestPlugin, c as createVitest, r as registerConsoleShortcuts, b as resolveFsAllow, s as startVitest } from './chunks/cli-api.B-2f6g4d.js';
|
|
4
|
+
export { p as parseCLI } from './chunks/cac.BZlOqtiQ.js';
|
|
5
|
+
export { c as createMethodsRPC, g as getFilePoolName, a as resolveApiServerConfig, b as resolveConfig } from './chunks/resolveConfig.C0vpvVRF.js';
|
|
4
6
|
import createDebug from 'debug';
|
|
5
7
|
export { distDir, rootDir } from './path.js';
|
|
6
|
-
export { B as BaseSequencer } from './chunks/RandomSequencer.
|
|
8
|
+
export { B as BaseSequencer } from './chunks/RandomSequencer.CjkAy_bL.js';
|
|
7
9
|
export { createServer, isFileServingAllowed, parseAst, parseAstAsync } from 'vite';
|
|
8
|
-
export { d as TestCase, e as TestFile, h as TestProject, f as TestSuite } from './chunks/index.Dx3f477d.js';
|
|
9
10
|
import 'node:fs';
|
|
11
|
+
import 'tinyrainbow';
|
|
10
12
|
import 'pathe';
|
|
11
|
-
import './chunks/
|
|
13
|
+
import './chunks/tasks.BZnCS9aT.js';
|
|
14
|
+
import '@vitest/runner/utils';
|
|
15
|
+
import '@vitest/utils';
|
|
16
|
+
import './chunks/env.CmHVDJnw.js';
|
|
17
|
+
import 'std-env';
|
|
18
|
+
import './chunks/utils.DO38lwfj.js';
|
|
19
|
+
import './chunks/base.BH-FAiX7.js';
|
|
20
|
+
import 'node:perf_hooks';
|
|
21
|
+
import '@vitest/utils/source-map';
|
|
22
|
+
import './chunks/index.CxRxs566.js';
|
|
23
|
+
import './chunks/utils.Ck2hJTRs.js';
|
|
24
|
+
import 'node:os';
|
|
25
|
+
import 'node:stream';
|
|
26
|
+
import 'node:console';
|
|
27
|
+
import 'node:process';
|
|
28
|
+
import './chunks/_commonjsHelpers.BFTU3MAI.js';
|
|
29
|
+
import 'assert';
|
|
30
|
+
import 'events';
|
|
31
|
+
import 'node:module';
|
|
32
|
+
import 'node:fs/promises';
|
|
33
|
+
import 'vite-node/utils';
|
|
34
|
+
import './chunks/coverage.zlNdAMHK.js';
|
|
12
35
|
import './chunks/index.CM5UI-4O.js';
|
|
13
36
|
import 'node:path';
|
|
14
37
|
import 'node:url';
|
|
15
|
-
import 'node:process';
|
|
16
|
-
import './chunks/_commonjsHelpers.BFTU3MAI.js';
|
|
17
38
|
import 'readline';
|
|
18
|
-
import '
|
|
19
|
-
import './chunks/constants.CaAN7icJ.js';
|
|
20
|
-
import 'node:worker_threads';
|
|
21
|
-
import 'os';
|
|
22
|
-
import 'path';
|
|
23
|
-
import 'util';
|
|
24
|
-
import 'stream';
|
|
25
|
-
import 'fs';
|
|
39
|
+
import './chunks/constants.fzPh7AOq.js';
|
|
26
40
|
import 'vite-node/client';
|
|
27
41
|
import '@vitest/snapshot/manager';
|
|
28
42
|
import 'vite-node/server';
|
|
29
|
-
import '@vitest/runner/utils';
|
|
30
|
-
import './chunks/base.BH-FAiX7.js';
|
|
31
|
-
import '@vitest/utils';
|
|
32
|
-
import './chunks/env.CmHVDJnw.js';
|
|
33
|
-
import 'std-env';
|
|
34
43
|
import './chunks/index.BpSiYbpB.js';
|
|
44
|
+
import 'stream';
|
|
35
45
|
import 'zlib';
|
|
36
46
|
import 'buffer';
|
|
37
47
|
import 'crypto';
|
|
@@ -40,31 +50,22 @@ import 'http';
|
|
|
40
50
|
import 'net';
|
|
41
51
|
import 'tls';
|
|
42
52
|
import 'url';
|
|
43
|
-
import '
|
|
44
|
-
import '
|
|
45
|
-
import '
|
|
53
|
+
import 'os';
|
|
54
|
+
import 'path';
|
|
55
|
+
import 'util';
|
|
56
|
+
import 'fs';
|
|
46
57
|
import 'node:crypto';
|
|
47
|
-
import 'vite-node/utils';
|
|
48
58
|
import 'magic-string';
|
|
49
59
|
import '@vitest/utils/ast';
|
|
50
|
-
import 'node:
|
|
51
|
-
import 'tinyrainbow';
|
|
52
|
-
import './chunks/index.CxRxs566.js';
|
|
53
|
-
import './chunks/utils.Ck2hJTRs.js';
|
|
60
|
+
import 'node:worker_threads';
|
|
54
61
|
import 'node:readline';
|
|
55
|
-
import './chunks/utils.DO38lwfj.js';
|
|
56
62
|
import 'node:assert';
|
|
57
63
|
import 'node:v8';
|
|
58
64
|
import 'node:util';
|
|
59
65
|
import 'node:events';
|
|
60
66
|
import 'tinypool';
|
|
61
|
-
import 'node:perf_hooks';
|
|
62
67
|
import 'execa';
|
|
63
68
|
import 'module';
|
|
64
|
-
import './chunks/tasks.BZnCS9aT.js';
|
|
65
|
-
import 'node:stream';
|
|
66
|
-
import 'node:console';
|
|
67
|
-
import 'assert';
|
|
68
69
|
|
|
69
70
|
function createDebugger(namespace) {
|
|
70
71
|
const debug = createDebug(namespace);
|
|
@@ -73,4 +74,6 @@ function createDebugger(namespace) {
|
|
|
73
74
|
}
|
|
74
75
|
}
|
|
75
76
|
|
|
76
|
-
|
|
77
|
+
const TestFile = TestModule;
|
|
78
|
+
|
|
79
|
+
export { TestFile, TestModule, createDebugger };
|
package/dist/reporters.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { az as BaseReporter, aq as BasicReporter, aJ as BenchmarkBuiltinReporters, aI as BenchmarkReportsMap, aE as BuiltinReporterOptions, aD as BuiltinReporters, ap as DefaultReporter, ar as DotReporter, aB as FileDiagnostic, ay as GithubActionsReporter, ax as HangingProcessReporter, av as JUnitReporter, aF as JsonAssertionResult, as as JsonReporter, aG as JsonTestResult, aH as JsonTestResults, q as Reporter, aC as ReportersMap, aw as TapFlatReporter, au as TapReporter, ai as TaskOptions, ae as TestCase, ah as TestCollection, aj as TestDiagnostic, aA as TestFile, N as TestModule, ag as TestProject, ak as TestResult, am as TestResultFailed, al as TestResultPassed, an as TestResultSkipped, af as TestSuite, at as VerboseReporter } from './chunks/reporters.B0Ao6Zu1.js';
|
|
2
2
|
import '@vitest/runner';
|
|
3
3
|
import 'vite';
|
|
4
4
|
import '@vitest/pretty-format';
|
|
@@ -6,7 +6,7 @@ import './chunks/config.CHuotKvS.js';
|
|
|
6
6
|
import '@vitest/snapshot';
|
|
7
7
|
import '@vitest/snapshot/environment';
|
|
8
8
|
import 'vite-node';
|
|
9
|
-
import './chunks/environment.
|
|
9
|
+
import './chunks/environment.C5eAp3K6.js';
|
|
10
10
|
import 'node:stream';
|
|
11
11
|
import 'vite-node/client';
|
|
12
12
|
import '@vitest/snapshot/manager';
|
package/dist/reporters.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
export { B as BasicReporter,
|
|
2
|
-
import './chunks/tasks.BZnCS9aT.js';
|
|
3
|
-
import '@vitest/runner/utils';
|
|
4
|
-
import '@vitest/utils';
|
|
1
|
+
export { B as BasicReporter, h as BenchmarkReportsMap, D as DefaultReporter, a as DotReporter, G as GithubActionsReporter, H as HangingProcessReporter, b as JUnitReporter, J as JsonReporter, R as ReportersMap, c as TapFlatReporter, T as TapReporter, e as TestCase, d as TestFile, f as TestModule, g as TestSuite, V as VerboseReporter } from './chunks/index.C4LZENmc.js';
|
|
5
2
|
import 'node:fs';
|
|
6
3
|
import 'tinyrainbow';
|
|
7
4
|
import 'pathe';
|
|
5
|
+
import './chunks/tasks.BZnCS9aT.js';
|
|
6
|
+
import '@vitest/runner/utils';
|
|
7
|
+
import '@vitest/utils';
|
|
8
8
|
import './chunks/env.CmHVDJnw.js';
|
|
9
9
|
import 'std-env';
|
|
10
10
|
import './chunks/utils.DO38lwfj.js';
|
|
@@ -13,7 +13,7 @@ import 'node:perf_hooks';
|
|
|
13
13
|
import '@vitest/utils/source-map';
|
|
14
14
|
import './chunks/index.CxRxs566.js';
|
|
15
15
|
import './chunks/utils.Ck2hJTRs.js';
|
|
16
|
-
import './chunks/RandomSequencer.
|
|
16
|
+
import './chunks/RandomSequencer.CjkAy_bL.js';
|
|
17
17
|
import 'node:fs/promises';
|
|
18
18
|
import 'execa';
|
|
19
19
|
import 'node:url';
|
package/dist/runners.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { setState, GLOBAL_EXPECT, getState } from '@vitest/expect';
|
|
2
|
-
import { g as getSnapshotClient, c as createExpect, v as vi } from './chunks/vi.
|
|
2
|
+
import { g as getSnapshotClient, c as createExpect, v as vi } from './chunks/vi.DBepMgvg.js';
|
|
3
3
|
import 'pathe';
|
|
4
4
|
import { g as getTestName } from './chunks/tasks.BZnCS9aT.js';
|
|
5
5
|
import { createDefer, getSafeTimers } from '@vitest/utils';
|
package/dist/workers/forks.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import v8 from 'node:v8';
|
|
2
2
|
import { c as createForksRpcOptions, u as unwrapSerializableConfig } from '../chunks/utils.C3_cBsyn.js';
|
|
3
|
-
import { r as runBaseTests } from '../chunks/base.
|
|
3
|
+
import { r as runBaseTests } from '../chunks/base.B-9RAXb6.js';
|
|
4
4
|
import '@vitest/utils';
|
|
5
5
|
import 'vite-node/client';
|
|
6
6
|
import '../chunks/utils.Ck2hJTRs.js';
|
|
@@ -5,11 +5,11 @@ import { performance } from 'node:perf_hooks';
|
|
|
5
5
|
import { startTests, collectTests } from '@vitest/runner';
|
|
6
6
|
import { installSourcemapsSupport } from 'vite-node/source-map';
|
|
7
7
|
import { KNOWN_ASSET_TYPES } from 'vite-node/constants';
|
|
8
|
-
import { s as setupChaiConfig, r as resolveTestRunner, a as resolveSnapshotEnvironment } from '../chunks/index.
|
|
9
|
-
import { a as startCoverageInsideWorker, s as stopCoverageInsideWorker } from '../chunks/coverage.
|
|
10
|
-
import { V as VitestIndex } from '../chunks/index.
|
|
8
|
+
import { s as setupChaiConfig, r as resolveTestRunner, a as resolveSnapshotEnvironment } from '../chunks/index.dWDhoZDV.js';
|
|
9
|
+
import { a as startCoverageInsideWorker, s as stopCoverageInsideWorker } from '../chunks/coverage.zlNdAMHK.js';
|
|
10
|
+
import { V as VitestIndex } from '../chunks/index.m3Xip5Zz.js';
|
|
11
11
|
import { g as getWorkerState } from '../chunks/utils.Ck2hJTRs.js';
|
|
12
|
-
import { s as setupCommonEnv } from '../chunks/setup-common.
|
|
12
|
+
import { s as setupCommonEnv } from '../chunks/setup-common.B7uEQsGB.js';
|
|
13
13
|
import { c as closeInspector } from '../chunks/inspector.70d6emsh.js';
|
|
14
14
|
import 'chai';
|
|
15
15
|
import 'pathe';
|
|
@@ -24,7 +24,7 @@ import '../chunks/index.CxRxs566.js';
|
|
|
24
24
|
import '../chunks/env.CmHVDJnw.js';
|
|
25
25
|
import 'std-env';
|
|
26
26
|
import '../chunks/run-once.Sxe67Wng.js';
|
|
27
|
-
import '../chunks/vi.
|
|
27
|
+
import '../chunks/vi.DBepMgvg.js';
|
|
28
28
|
import '../chunks/_commonjsHelpers.BFTU3MAI.js';
|
|
29
29
|
import '@vitest/expect';
|
|
30
30
|
import '@vitest/snapshot';
|