mirror of
https://github.com/discourse/discourse.git
synced 2025-01-31 20:37:14 +08:00
Merge pull request #1500 from velesin/qunit_helpers_self
refactors asyncTestDiscourse to bind context as self
This commit is contained in:
commit
b12fcec2db
|
@ -25,12 +25,10 @@ function controllerFor(controller, model) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function asyncTestDiscourse(text, func) {
|
function asyncTestDiscourse(text, func) {
|
||||||
|
|
||||||
asyncTest(text, function () {
|
asyncTest(text, function () {
|
||||||
|
var self = this;
|
||||||
var qunitContext = this;
|
|
||||||
Ember.run(function () {
|
Ember.run(function () {
|
||||||
func.call(qunitContext);
|
func.call(self);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user