(string, child)
| 271 | try { |
| 272 | await runCommand(path.join('.', 'node_modules', 'ember-cli', 'bin', 'ember'), 'build', '--watch', { |
| 273 | onOutput(string, child) { |
| 274 | if (touched) { |
| 275 | if (string.match(/Build successful/)) { |
| 276 | expect(checker.contains('js', text)).to.be; |
| 277 | killCliProcess(child); |
| 278 | } |
| 279 | } else if (string.match(/Build successful/)) { |
| 280 | // first build |
| 281 | touched = true; |
| 282 | fs.appendFileSync(appJsPath, line); |
| 283 | } |
| 284 | }, |
| 285 | }); |
| 286 | } catch (error) { |
| 287 | // swallowing because of SIGINT |
nothing calls this directly
no test coverage detected
searching dependent graphs…