mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-12-04 04:42:02 -05:00
16 lines
352 B
JavaScript
16 lines
352 B
JavaScript
import initializer from 'wizard/initializers/load-helpers';
|
|
|
|
export function componentTest(name, opts) {
|
|
opts = opts || {};
|
|
|
|
test(name, function(assert) {
|
|
initializer.initialize();
|
|
|
|
if (opts.setup) {
|
|
opts.setup.call(this);
|
|
}
|
|
|
|
andThen(() => this.render(opts.template));
|
|
andThen(() => opts.test.call(this, assert));
|
|
});
|
|
}
|