2018-06-13 18:34:10 +02:00
|
|
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
|
2018-09-02 11:05:09 +02:00
|
|
|
import { E2EImportsModule } from '../../e2e-imports.module';
|
2019-07-26 11:46:59 +02:00
|
|
|
import { SiteComponent } from './site.component';
|
2018-06-13 18:34:10 +02:00
|
|
|
|
|
|
|
describe('SiteComponent', () => {
|
2018-06-19 16:55:50 +02:00
|
|
|
let component: SiteComponent;
|
|
|
|
let fixture: ComponentFixture<SiteComponent>;
|
2018-06-13 18:34:10 +02:00
|
|
|
|
2018-06-19 16:55:50 +02:00
|
|
|
beforeEach(async(() => {
|
|
|
|
TestBed.configureTestingModule({
|
2018-09-02 11:05:09 +02:00
|
|
|
imports: [E2EImportsModule],
|
2018-06-19 16:55:50 +02:00
|
|
|
declarations: [SiteComponent]
|
|
|
|
}).compileComponents();
|
|
|
|
}));
|
2018-06-13 18:34:10 +02:00
|
|
|
|
2018-06-19 16:55:50 +02:00
|
|
|
beforeEach(() => {
|
|
|
|
fixture = TestBed.createComponent(SiteComponent);
|
|
|
|
component = fixture.componentInstance;
|
|
|
|
fixture.detectChanges();
|
|
|
|
});
|
2018-06-13 18:34:10 +02:00
|
|
|
|
2018-06-19 16:55:50 +02:00
|
|
|
it('should create', () => {
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
});
|
2018-06-13 18:34:10 +02:00
|
|
|
});
|