121 lines
5.0 KiB
Plaintext
121 lines
5.0 KiB
Plaintext
import { B as SequenceHooks, G as SequenceSetupFiles, F as File, T as Task, S as Suite, o as TaskResultPack, a as Test, C as Custom, A as TaskContext, E as ExtendedContext } from './tasks-_kyNRBhz.js';
|
|
export { g as CustomAPI, D as DoneCallback, t as Fixture, s as FixtureFn, r as FixtureOptions, u as Fixtures, v as HookCleanupCallback, H as HookListener, I as InferFixturesTypes, O as OnTestFailedHandler, i as OnTestFinishedHandler, R as RunMode, y as RuntimeContext, d as SuiteAPI, f as SuiteCollector, x as SuiteFactory, h as SuiteHooks, k as TaskBase, w as TaskCustomOptions, m as TaskMeta, l as TaskPopulated, n as TaskResult, j as TaskState, e as TestAPI, z as TestContext, p as TestFunction, q as TestOptions, U as Use } from './tasks-_kyNRBhz.js';
|
|
import { DiffOptions } from '@vitest/utils/diff';
|
|
import '@vitest/utils';
|
|
|
|
interface VitestRunnerConfig {
|
|
root: string;
|
|
setupFiles: string[] | string;
|
|
name: string;
|
|
passWithNoTests: boolean;
|
|
testNamePattern?: RegExp;
|
|
allowOnly?: boolean;
|
|
sequence: {
|
|
shuffle?: boolean;
|
|
concurrent?: boolean;
|
|
seed: number;
|
|
hooks: SequenceHooks;
|
|
setupFiles: SequenceSetupFiles;
|
|
};
|
|
chaiConfig?: {
|
|
truncateThreshold?: number;
|
|
};
|
|
maxConcurrency: number;
|
|
testTimeout: number;
|
|
hookTimeout: number;
|
|
retry: number;
|
|
diffOptions?: DiffOptions;
|
|
}
|
|
type VitestRunnerImportSource = 'collect' | 'setup';
|
|
interface VitestRunnerConstructor {
|
|
new (config: VitestRunnerConfig): VitestRunner;
|
|
}
|
|
type CancelReason = 'keyboard-input' | 'test-failure' | string & Record<string, never>;
|
|
interface VitestRunner {
|
|
/**
|
|
* First thing that's getting called before actually collecting and running tests.
|
|
*/
|
|
onBeforeCollect?: (paths: string[]) => unknown;
|
|
/**
|
|
* Called after collecting tests and before "onBeforeRun".
|
|
*/
|
|
onCollected?: (files: File[]) => unknown;
|
|
/**
|
|
* Called when test runner should cancel next test runs.
|
|
* Runner should listen for this method and mark tests and suites as skipped in
|
|
* "onBeforeRunSuite" and "onBeforeRunTask" when called.
|
|
*/
|
|
onCancel?: (reason: CancelReason) => unknown;
|
|
/**
|
|
* Called before running a single test. Doesn't have "result" yet.
|
|
*/
|
|
onBeforeRunTask?: (test: Task) => unknown;
|
|
/**
|
|
* Called before actually running the test function. Already has "result" with "state" and "startTime".
|
|
*/
|
|
onBeforeTryTask?: (test: Task, options: {
|
|
retry: number;
|
|
repeats: number;
|
|
}) => unknown;
|
|
/**
|
|
* Called after result and state are set.
|
|
*/
|
|
onAfterRunTask?: (test: Task) => unknown;
|
|
/**
|
|
* Called right after running the test function. Doesn't have new state yet. Will not be called, if the test function throws.
|
|
*/
|
|
onAfterTryTask?: (test: Task, options: {
|
|
retry: number;
|
|
repeats: number;
|
|
}) => unknown;
|
|
/**
|
|
* Called before running a single suite. Doesn't have "result" yet.
|
|
*/
|
|
onBeforeRunSuite?: (suite: Suite) => unknown;
|
|
/**
|
|
* Called after running a single suite. Has state and result.
|
|
*/
|
|
onAfterRunSuite?: (suite: Suite) => unknown;
|
|
/**
|
|
* If defined, will be called instead of usual Vitest suite partition and handling.
|
|
* "before" and "after" hooks will not be ignored.
|
|
*/
|
|
runSuite?: (suite: Suite) => Promise<void>;
|
|
/**
|
|
* If defined, will be called instead of usual Vitest handling. Useful, if you have your custom test function.
|
|
* "before" and "after" hooks will not be ignored.
|
|
*/
|
|
runTask?: (test: Task) => Promise<void>;
|
|
/**
|
|
* Called, when a task is updated. The same as "onTaskUpdate" in a reporter, but this is running in the same thread as tests.
|
|
*/
|
|
onTaskUpdate?: (task: TaskResultPack[]) => Promise<void>;
|
|
/**
|
|
* Called before running all tests in collected paths.
|
|
*/
|
|
onBeforeRunFiles?: (files: File[]) => unknown;
|
|
/**
|
|
* Called right after running all tests in collected paths.
|
|
*/
|
|
onAfterRunFiles?: (files: File[]) => unknown;
|
|
/**
|
|
* Called when new context for a test is defined. Useful, if you want to add custom properties to the context.
|
|
* If you only want to define custom context, consider using "beforeAll" in "setupFiles" instead.
|
|
*
|
|
* This method is called for both "test" and "custom" handlers.
|
|
*
|
|
* @see https://vitest.dev/advanced/runner.html#your-task-function
|
|
*/
|
|
extendTaskContext?: <T extends Test | Custom>(context: TaskContext<T>) => ExtendedContext<T>;
|
|
/**
|
|
* Called, when files are imported. Can be called in two situations: when collecting tests and when importing setup files.
|
|
*/
|
|
importFile: (filepath: string, source: VitestRunnerImportSource) => unknown;
|
|
/**
|
|
* Publicly available configuration.
|
|
*/
|
|
config: VitestRunnerConfig;
|
|
}
|
|
|
|
export { type CancelReason, Custom, ExtendedContext, File, SequenceHooks, SequenceSetupFiles, Suite, Task, TaskContext, TaskResultPack, Test, type VitestRunner, type VitestRunnerConfig, type VitestRunnerConstructor, type VitestRunnerImportSource };
|