MCPcopy
hub / github.com/jestjs/jest / it

Function it

packages/jest-each/src/index.ts:43–47  ·  view source on GitHub ↗
(
    title: string,
    test: Global.EachTestFn<Global.TestFn>,
    timeout?: number,
  )

Source from the content-addressed store, hash-verified

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;

Calls 1

bindFunction · 0.85

Tested by

no test coverage detected