我尝试使用业力和茉莉花来测试我的角度分量,在这里我收到错误消息:“失败:无法读取未定义的属性'querySelector'”。
这是我的测试用例:我的目的是在两个特定字段具有输入的情况下验证按钮。
beforeEach(() => {
fixture = TestBed.createComponent(SearchPanelComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});