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

10 lines
244 B
Plaintext
Raw Normal View History

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);
}