(
title: string,
test: Global.EachTestFn<Global.TestFn>,
timeout?: number,
)
| 23 | ); |
| 24 | } |
| 25 | const test = ( |
| 26 | title: string, |
| 27 | test: Global.EachTestFn<Global.TestFn>, |
| 28 | timeout?: number, |
| 29 | ) => bind(g.test)(table, ...data)(title, test, timeout); |
| 30 | test.skip = bind(g.test.skip)(table, ...data); |
| 31 | test.only = bind(g.test.only)(table, ...data); |
| 32 |
no test coverage detected