(testName: string)
| 44 | |
| 45 | const TEST_FILTERS: TestFilter[] = []; |
| 46 | const customInclude = (testName: string) => { |
| 47 | // Exclude webworker test |
| 48 | if (testName.includes('computation in worker')) { |
| 49 | return false; |
| 50 | } |
| 51 | |
| 52 | // Include all other tests. |
| 53 | return true; |
| 54 | }; |
| 55 | setupTestFilters(TEST_FILTERS, customInclude); |
| 56 | |
| 57 | runner.execute(); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…