funky-framadate-front/src/app/ui/copy-text/copy-text.component.spec.ts

26 lines
691 B
TypeScript

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