2018-06-15 11:03:24 -04:00
|
|
|
import componentTest from "helpers/component-test";
|
2016-01-04 15:18:09 -05:00
|
|
|
|
|
|
|
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
|
|
|
}
|