Skip to content

Commit 447a63a

Browse files
committed
fix: updated the ember-cli version to the latest release & resolved unit test issue #75
1 parent daa3b3d commit 447a63a

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed
-5.3 KB
Binary file not shown.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"broccoli-merge-trees": "^0.2.1",
3636
"broccoli-writer": "^0.1.1",
3737
"chalk": "^1.1.0",
38-
"ember-cli": "ember-cli/ember-cli#ae5e72614e40f5e6dd57463e526c65da899fde07",
38+
"ember-cli": "1.13.13",
3939
"exit": "^0.1.2",
4040
"fs-extra": "^0.18.4",
4141
"leek": "0.0.19",

tests/helpers/mock-ui.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ function MockUI() {
1212
inputStream: through(),
1313
outputStream: through(function(data) {
1414
this.output += data;
15+
}.bind(this)),
16+
errorStream: through(function(data) {
17+
this.errors += data;
1518
}.bind(this))
1619
});
1720
}

0 commit comments

Comments
 (0)