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

Function describe

packages/jest-each/src/index.ts:56–60  ·  view source on GitHub ↗
(
    title: string,
    suite: Global.EachTestFn<Global.BlockFn>,
    timeout?: number,
  )

Source from the content-addressed store, hash-verified

54 const xtest = bind(g.xtest)(table, ...data);
55
56 const describe = (
57 title: string,
58 suite: Global.EachTestFn<Global.BlockFn>,
59 timeout?: number,
60 ) => bind(g.describe, false)(table, ...data)(title, suite, timeout);
61 describe.skip = bind(g.describe.skip, false)(table, ...data);
62 describe.only = bind(g.describe.only, false)(table, ...data);
63 const fdescribe = bind(g.fdescribe, false)(table, ...data);

Calls 1

bindFunction · 0.85

Tested by

no test coverage detected