(reason)
| 7 | * @returns {boolean} true when it is windows, otherwise false |
| 8 | */ |
| 9 | export function skipTestOnWindows(reason) { |
| 10 | if (isWindows) { |
| 11 | test.skip(reason, () => {}); |
| 12 | } |
| 13 | |
| 14 | return isWindows; |
| 15 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…