我有一个自定义组件并尝试测试发出的事件
我的组件如下所示:
@Component(
selector: "my-component",
templateUrl: 'component/my-component.html',
useShadowDom: false,
publishAs: "ctrl"
)
class MyComponent implements ScopeAware {
Scope scope;
String value = "foo"
void onButtonClick(){
scope.emit('on-select', value);
}
}
单击按钮时,组件会发出“on-select”事件。像预期的那样工作,但由于我是测试的忠实粉丝,我想测试那个事件。
这可能在角度 0.14.0 中吗?
我像angulardart-sample-app中的测试一样编写测试
整个组件测试确实有很多样板文件,然后编写其他所有内容都很有趣。在 0.14.0 或未来是否有更简单的组件测试方法?