(testName: string, tests: () => void)
| 76 | } |
| 77 | |
| 78 | export function describeBrowserEnvs(testName: string, tests: () => void) { |
| 79 | describeWithFlags(testName, BROWSER_ENVS, () => { |
| 80 | tests(); |
| 81 | }); |
| 82 | } |
| 83 | |
| 84 | export function describeNodeEnvs(testName: string, tests: () => void) { |
| 85 | describeWithFlags(testName, NODE_ENVS, () => { |
nothing calls this directly
no test coverage detected
searching dependent graphs…