(b)
| 77 | // Prepend BROWSERS=x,y to `npm run test` to run a subset of browsers |
| 78 | // e.g. `BROWSERS=chromium,firefox npm run test` |
| 79 | const noBrowser = (b) => { |
| 80 | throw new Error(`No browser configured named '${b}'; using defaults`); |
| 81 | }; |
| 82 | let commandLineBrowsers; |
| 83 | try { |
| 84 | commandLineBrowsers = process.env.BROWSERS?.split(',').map( |
no outgoing calls
no test coverage detected