import { ComponentFixture, TestBed } from '@angular/core/testing'; import { CaTableCardViewComponent } from './ca-table-card-view.component'; describe('CaTableCardViewComponent', () => { let component: CaTableCardViewComponent; let fixture: ComponentFixture; beforeEach(() => { TestBed.configureTestingModule({ declarations: [CaTableCardViewComponent], }); fixture = TestBed.createComponent(CaTableCardViewComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });