27 lines
842 B
TypeScript
27 lines
842 B
TypeScript
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();
|
|
});
|
|
});
|