(testName: string)
| 412 | ]; |
| 413 | |
| 414 | const customInclude = (testName: string) => { |
| 415 | // Include all regular describe() tests. |
| 416 | if (testName.indexOf('test-wasm') < 0) { |
| 417 | return true; |
| 418 | } |
| 419 | |
| 420 | // Include all of the wasm specific tests. |
| 421 | if (testName.startsWith('wasm')) { |
| 422 | return true; |
| 423 | } |
| 424 | |
| 425 | return false; |
| 426 | }; |
| 427 | setupTestFilters(TEST_FILTERS, customInclude); |
| 428 | |
| 429 | beforeAll(setupCachedWasmPaths, 30_000); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…