2018-06-19 16:55:50 +02:00
|
|
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
|
2018-09-06 07:14:55 +02:00
|
|
|
import { LegalNoticeContentComponent } from './legal-notice-content.component';
|
2018-09-02 11:05:09 +02:00
|
|
|
import { E2EImportsModule } from '../../../../e2e-imports.module';
|
2018-06-19 16:55:50 +02:00
|
|
|
|
2018-09-06 07:14:55 +02:00
|
|
|
describe('LegalNoticeComponent', () => {
|
|
|
|
let component: LegalNoticeContentComponent;
|
|
|
|
let fixture: ComponentFixture<LegalNoticeContentComponent>;
|
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
|
|
|
}).compileComponents();
|
|
|
|
}));
|
|
|
|
|
|
|
|
beforeEach(() => {
|
2018-09-06 07:14:55 +02:00
|
|
|
fixture = TestBed.createComponent(LegalNoticeContentComponent);
|
2018-06-19 16:55:50 +02:00
|
|
|
component = fixture.componentInstance;
|
|
|
|
fixture.detectChanges();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should create', () => {
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
});
|
|
|
|
});
|