2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 10:50:21 +08:00

FEATURE: Use virtual dom framework for faster post rendering

This commit is contained in:
Robin Ward 2016-01-04 15:18:09 -05:00
parent 3bf931ce54
commit d1e85bdd8b
127 changed files with 5724 additions and 2827 deletions

View file

@ -0,0 +1,9 @@
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);
}