UNPKG

@drozdik.m/unit-test

Version:

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

17 lines (15 loc) 312 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 }