(config: BrowserTestConfig)
| 179 | } |
| 180 | |
| 181 | function configLabel(config: BrowserTestConfig): string { |
| 182 | const parts = [config.scope, config.profile ? 'profile' : 'no-profile', config.headless ? 'headless' : 'headed']; |
| 183 | return parts.join(', '); |
| 184 | } |
| 185 | |
| 186 | // --------------------------------------------------------------------------- |
| 187 | // Per-Provider Test Generator |
no outgoing calls
no test coverage detected
searching dependent graphs…