(testName: string, tests: () => void)
| 86 | * @param tests |
| 87 | */ |
| 88 | export function describeMathCPUAndGPU(testName: string, tests: () => void) { |
| 89 | describeWithFlags(testName, ALL_ENVS, () => { |
| 90 | tests(); |
| 91 | }); |
| 92 | } |
| 93 | |
| 94 | /** |
| 95 | * Describe tests to be run on CPU and GPU WebGL2. |
no test coverage detected
searching dependent graphs…