(error)
| 56 | let readyCount = 0; |
| 57 | |
| 58 | const ready = (error) => { |
| 59 | if (error && done) { |
| 60 | done(error); |
| 61 | |
| 62 | return; |
| 63 | } |
| 64 | |
| 65 | readyCount += 1; |
| 66 | |
| 67 | if (readyCount === 2) { |
| 68 | done(); |
| 69 | } |
| 70 | }; |
| 71 | |
| 72 | const result = startFullSetup(config, devServerConfig, ready); |
| 73 |
no outgoing calls
no test coverage detected
searching dependent graphs…