UNPKG

sls-test-tools

Version:

Custom Jest Assertions for Serverless Projects

6 lines (5 loc) 171 B
export interface TestResultOutput { message: () => string; pass: boolean; } export declare const testResult: (message: string, pass: boolean) => TestResultOutput;