discourse/test/javascripts/helpers/qunit_helpers.js

44 lines
1.0 KiB
JavaScript
Raw Normal View History

2014-07-30 18:56:01 -04:00
/* global asyncTest */
/* exported integration, testController, controllerFor, asyncTestDiscourse, fixture */
function integration(name, lifecycle) {
module("Integration: " + name, {
2013-06-20 13:58:54 -04:00
setup: function() {
Ember.run(Discourse, Discourse.advanceReadiness);
if (lifecycle && lifecycle.setup) {
lifecycle.setup.call(this);
}
2014-07-30 18:56:01 -04:00
Discourse.reset();
2013-06-20 13:58:54 -04:00
},
teardown: function() {
if (lifecycle && lifecycle.teardown) {
lifecycle.teardown.call(this);
}
2013-06-20 13:58:54 -04:00
Discourse.reset();
}
});
}
function controllerFor(controller, model) {
controller = Discourse.__container__.lookup('controller:' + controller);
if (model) { controller.set('model', model ); }
return controller;
2013-07-15 19:47:13 -04:00
}
function asyncTestDiscourse(text, func) {
asyncTest(text, function () {
var self = this;
2013-07-15 19:47:13 -04:00
Ember.run(function () {
func.call(self);
2013-07-15 19:47:13 -04:00
});
});
}
function fixture(selector) {
if (selector) {
return $("#qunit-fixture").find(selector);
}
return $("#qunit-fixture");
}