Skip to content

Commit 8baf5fb

Browse files
committed
fix(tests): pass all to execa to ensure access to interleaved output
1 parent 54fd95f commit 8baf5fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ts/tests/helpers/skeleton-app.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export default class SkeletonApp {
7373

7474
_ember(args: string[]) {
7575
let ember = require.resolve('ember-cli/bin/ember');
76-
return execa.node(ember, args, { cwd: this.root });
76+
return execa.node(ember, args, { cwd: this.root, all: true });
7777
}
7878
}
7979

0 commit comments

Comments
 (0)