OpenSlides/client/src/app/site/motions/components/motion-block-detail/motion-block-detail.component.spec.ts

27 lines
842 B
TypeScript
Raw Normal View History

2018-12-06 12:28:05 +01:00
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { MotionBlockDetailComponent } from './motion-block-detail.component';
import { E2EImportsModule } from 'e2e-imports.module';
describe('MotionBlockDetailComponent', () => {
let component: MotionBlockDetailComponent;
let fixture: ComponentFixture<MotionBlockDetailComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
imports: [E2EImportsModule],
declarations: [MotionBlockDetailComponent]
}).compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(MotionBlockDetailComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});