/* tslint:disable:no-unused-variable */ import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { CaInputNoteComponent } from './ca-input-note.component'; describe('CaInputNoteComponent', () => { let component: CaInputNoteComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [CaInputNoteComponent], }).compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(CaInputNoteComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });