2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-10 21:01:33 +08:00
discourse/test/javascripts/helpers/widget-test.js.es6

9 lines
243 B
Text
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);
2017-06-14 13:57:58 -04:00
}