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