2018-10-16 12:41:46 +02:00
|
|
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
|
|
|
|
import { MetaTextBlockComponent } from './meta-text-block.component';
|
|
|
|
import { E2EImportsModule } from 'e2e-imports.module';
|
|
|
|
|
|
|
|
describe('MetaTextBlockComponent', () => {
|
|
|
|
let component: MetaTextBlockComponent;
|
|
|
|
let fixture: ComponentFixture<MetaTextBlockComponent>;
|
|
|
|
|
|
|
|
beforeEach(async(() => {
|
|
|
|
TestBed.configureTestingModule({
|
2019-01-24 16:25:50 +01:00
|
|
|
imports: [E2EImportsModule]
|
2018-10-16 12:41:46 +02:00
|
|
|
}).compileComponents();
|
|
|
|
}));
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
fixture = TestBed.createComponent(MetaTextBlockComponent);
|
|
|
|
component = fixture.componentInstance;
|
|
|
|
fixture.detectChanges();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should create', () => {
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
});
|
|
|
|
});
|