@palmares/tests
Version:
This defines a default test framework testing stuff inside of the framework
15 lines • 656 B
TypeScript
import { TestExpectAdapter } from './expect';
import { TestFunctionsAdapter } from './functions';
export declare class TestAdapter {
functions: TestFunctionsAdapter;
expect: TestExpectAdapter;
getCustomProps(): Promise<object>;
/** Should return */
run(_filesToRun: string[], _globalSetupFunctionBody: string, _std: {
join: (...args: string[]) => Promise<string>;
writeFile: (path: string | string[], content: string) => Promise<void>;
removeFile: (path: string | string[]) => Promise<void>;
mkdir: (path: string | string[]) => Promise<void>;
}): Promise<void>;
}
//# sourceMappingURL=index.d.ts.map