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