This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/assets/javascripts/wizard/test/helpers/component-test.js.es6
2017-06-15 10:12:07 -04:00

18 lines
376 B
JavaScript

import initializer from 'wizard/initializers/load-helpers';
export function componentTest(name, opts) {
opts = opts || {};
test(name, function(assert) {
initializer.initialize(this.registry);
if (opts.beforeEach) {
opts.beforeEach.call(this);
}
andThen(() => this.render(opts.template));
andThen(() => opts.test.call(this, assert));
});
}