mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 15:49:55 +08:00
17 lines
375 B
JavaScript
17 lines
375 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));
|
|
});
|
|
}
|