(
title: string,
test: Global.EachTestFn<Global.TestFn>,
timeout?: number,
)
| 41 | testConcurrent.skip = bind(g.test.concurrent.skip)(table, ...data); |
| 42 | |
| 43 | const it = ( |
| 44 | title: string, |
| 45 | test: Global.EachTestFn<Global.TestFn>, |
| 46 | timeout?: number, |
| 47 | ) => bind(g.it)(table, ...data)(title, test, timeout); |
| 48 | it.skip = bind(g.it.skip)(table, ...data); |
| 49 | it.only = bind(g.it.only)(table, ...data); |
| 50 | it.concurrent = testConcurrent; |
no test coverage detected