libmodulor
Version:
A TypeScript library to create platform-agnostic applications
11 lines (10 loc) • 357 B
TypeScript
import type { FilePath } from '../../dt/index.js';
import type { Worker } from '../../std/index.js';
export interface Input {
appPath: FilePath;
skipCoverage: boolean;
updateSnapshots: boolean;
}
export interface AppTestSuiteRunner extends Worker<Input, Promise<void>> {
coverageReportEntrypointPath(appPath: FilePath): Promise<FilePath>;
}