UNPKG

alsatian

Version:

TypeScript and JavaScript testing framework for beautiful and readable tests

12 lines (11 loc) 260 B
import { ITestCase } from "./test-case.i"; export interface ITest { isAsync: boolean; ignored: boolean; ignoreReason?: string; focussed: boolean; timeout: number; key: string; description: string; testCases: Array<ITestCase>; }