UNPKG

@mojir/lits

Version:

Lits is a pure functional programming language implemented in TypeScript

16 lines (15 loc) 385 B
interface RunTestParams { testPath: string; testNamePattern?: RegExp; } interface TestResult { /** * Test report * http://testanything.org/ */ tap: string; success: boolean; } export declare function runTest({ testPath: filePath, testNamePattern }: RunTestParams): TestResult; export declare function getErrorYaml(error: unknown): string; export {};