refactors asyncTestDiscourse to bind context as self

This commit is contained in:
Wojciech Zawistowski 2013-10-07 17:36:20 +02:00
parent 094b5eccca
commit 7106b27860
1 changed files with 2 additions and 4 deletions

View File

@ -25,12 +25,10 @@ function controllerFor(controller, model) {
}
function asyncTestDiscourse(text, func) {
asyncTest(text, function () {
var qunitContext = this;
var self = this;
Ember.run(function () {
func.call(qunitContext);
func.call(self);
});
});
}