vitest
Version:
Next generation testing framework powered by Vite
19 lines (15 loc) • 490 B
TypeScript
import { FileSpecification } from '@vitest/runner';
import { T as TestExecutionMethod } from './worker.d.B_PZTrCQ.js';
type SerializedTestSpecification = [project: {
name: string | undefined;
root: string;
}, file: string, options: {
pool: string;
testLines?: number[] | undefined;
}];
interface BrowserTesterOptions {
method: TestExecutionMethod;
files: FileSpecification[];
providedContext: string;
}
export type { BrowserTesterOptions as B, SerializedTestSpecification as S };