master.component.spec.ts
628 Bytes
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { MasterComponent } from './master.component';
describe('MasterComponent', () => {
let component: MasterComponent;
let fixture: ComponentFixture<MasterComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ MasterComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(MasterComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});