forked from tykayn/funky-framadate-front
26 lines
691 B
TypeScript
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();
|
|
});
|
|
});
|