discourse/test/javascripts/helpers/widget-test.js.es6

10 lines
244 B
Plaintext
Raw Normal View History

2018-06-15 11:03:24 -04:00
import componentTest from "helpers/component-test";
export function moduleForWidget(name) {
moduleForComponent(name, `widget:${name}`, { integration: true });
}
export function widgetTest(name, opts) {
return componentTest(name, opts);
2018-06-15 11:03:24 -04:00
}