import { ComponentFixture, TestBed } from '@angular/core/testing'; import { CaShowMoreComponent } from './ca-show-more.component'; describe('CaShowMoreComponent', () => { let component: CaShowMoreComponent; let fixture: ComponentFixture; beforeEach(async () => { await TestBed.configureTestingModule({ imports: [CaShowMoreComponent] }) .compileComponents(); fixture = TestBed.createComponent(CaShowMoreComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });