24 lines
628 B
TypeScript
24 lines
628 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { MasterRoomComponent } from './master-room.component';
|
|
|
|
describe('MasterRoomComponent', () => {
|
|
let component: MasterRoomComponent;
|
|
let fixture: ComponentFixture<MasterRoomComponent>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
declarations: [ MasterRoomComponent ]
|
|
})
|
|
.compileComponents();
|
|
|
|
fixture = TestBed.createComponent(MasterRoomComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|