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