UNPKG

twd-js

Version:

Test While Developing (TWD) - in-browser testing

8 lines (7 loc) 239 B
import { TestCase, tests } from '../twdRegistry'; export type Group = { name: string; children: (Group | typeof tests[number])[]; }; declare const groupTests: (tests: TestCase[]) => (TestCase | Group)[]; export default groupTests;