2019-08-09 15:14:23 +02:00
|
|
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
|
2020-04-20 18:15:30 +02:00
|
|
|
import { TwoLinksComponent } from './two-links.component';
|
2019-08-09 15:14:23 +02:00
|
|
|
|
2020-04-20 18:15:30 +02:00
|
|
|
describe('TwoLinksComponent', () => {
|
2020-04-21 17:26:25 +02:00
|
|
|
let component: TwoLinksComponent;
|
|
|
|
let fixture: ComponentFixture<TwoLinksComponent>;
|
2019-08-09 15:14:23 +02:00
|
|
|
|
2020-04-21 10:50:26 +02:00
|
|
|
beforeEach(async(() => {
|
|
|
|
TestBed.configureTestingModule({
|
2020-04-21 17:26:25 +02:00
|
|
|
declarations: [TwoLinksComponent],
|
2020-04-21 10:50:26 +02:00
|
|
|
}).compileComponents();
|
|
|
|
}));
|
2019-08-09 15:14:23 +02:00
|
|
|
|
2020-04-21 10:50:26 +02:00
|
|
|
beforeEach(() => {
|
2020-04-21 17:26:25 +02:00
|
|
|
fixture = TestBed.createComponent(TwoLinksComponent);
|
2020-04-21 10:50:26 +02:00
|
|
|
component = fixture.componentInstance;
|
|
|
|
fixture.detectChanges();
|
|
|
|
});
|
2019-08-09 15:14:23 +02:00
|
|
|
|
2020-04-21 10:50:26 +02:00
|
|
|
it('should create', () => {
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
});
|
2019-08-09 15:14:23 +02:00
|
|
|
});
|