(name: string)
| 145 | } |
| 146 | |
| 147 | export function getSessionConfig(name: string): BrowserSessionConfig | undefined { |
| 148 | return getConfiguredSessions().find(s => s.name === name); |
| 149 | } |
| 150 | |
| 151 | export function createSession( |
| 152 | name: string, |
no test coverage detected