(testName: string, tests: () => void)
| 70 | }; |
| 71 | |
| 72 | export function describeAllEnvs(testName: string, tests: () => void) { |
| 73 | describeWithFlags(testName, ALL_ENVS, () => { |
| 74 | tests(); |
| 75 | }); |
| 76 | } |
| 77 | |
| 78 | export function describeBrowserEnvs(testName: string, tests: () => void) { |
| 79 | describeWithFlags(testName, BROWSER_ENVS, () => { |
no test coverage detected
searching dependent graphs…