我的 component.html 中有这个 HTML:
<input type="radio" [checked]="selected" (change)="select()" />
如何进行旁观者查询并期望测试此输入元素是否被选中?
我尝试过:
expect(spectator.query('input')).toHaveAttribute('checked');
但我得到了错误:
Error: Expected element to have attribute 'checked', but had 'undefined'
我已经尝试过:
expect(spectator.query('input')).toBeChecked();
但后来我得到了错误:
Error: Expected element to be checked
如何测试这个简单的 HTML 输入元素?
谢谢索伦_