(name, options, fn)
| 399 | } |
| 400 | |
| 401 | const test = (name, options, fn) => { |
| 402 | const overrides = { |
| 403 | __proto__: null, |
| 404 | loc: getCallerLocation(), |
| 405 | }; |
| 406 | |
| 407 | return run(name, options, fn, overrides); |
| 408 | }; |
| 409 | ArrayPrototypeForEach(['expectFailure', 'skip', 'todo', 'only'], (keyword) => { |
| 410 | test[keyword] = (name, options, fn) => { |
| 411 | const overrides = { |
nothing calls this directly
no test coverage detected
searching dependent graphs…