( locator: FindLocator, query: string, )
| 151 | } |
| 152 | |
| 153 | export function parseFindSelectorExpression( |
| 154 | locator: FindLocator, |
| 155 | query: string, |
| 156 | ): SelectorChain | null { |
| 157 | if (locator !== 'any') return null; |
| 158 | if (!query.includes('=') && !query.includes('||')) return null; |
| 159 | return tryParseSelectorChain(query); |
| 160 | } |
| 161 | |
| 162 | function parseTimeout(value: string | undefined): number | null { |
| 163 | if (!value) return null; |
no test coverage detected
searching dependent graphs…