UNPKG

@drozdik.m/unit-test

Version:

Unit test with test cases with Assert functions. Simple and easy.

14 lines (13 loc) 307 B
export interface IResultJSON { name: string; testCases: ITestCaseResultJSON[]; finished: boolean; success: boolean; assertErrorCount: number; } export interface ITestCaseResultJSON { name: string; success: boolean; finished: boolean; errorMessage: string; }