import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { NewMovieComponent } from './new-movie.component'; describe('NewMovieComponent', () => { let component: NewMovieComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ NewMovieComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(NewMovieComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });