2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 10:50:21 +08:00
discourse/test/javascripts/helpers/widget-test.js.es6
2017-06-15 10:12:07 -04:00

9 lines
No EOL
243 B
JavaScript

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