mirror of https://github.com/OpenVidu/openvidu.git
26 lines
634 B
TypeScript
26 lines
634 B
TypeScript
![]() |
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||
|
|
||
|
import { PreJoinComponent } from './pre-join.component';
|
||
|
|
||
|
describe('PreJoinComponent', () => {
|
||
|
let component: PreJoinComponent;
|
||
|
let fixture: ComponentFixture<PreJoinComponent>;
|
||
|
|
||
|
beforeEach(async () => {
|
||
|
await TestBed.configureTestingModule({
|
||
|
declarations: [ PreJoinComponent ]
|
||
|
})
|
||
|
.compileComponents();
|
||
|
});
|
||
|
|
||
|
beforeEach(() => {
|
||
|
fixture = TestBed.createComponent(PreJoinComponent);
|
||
|
component = fixture.componentInstance;
|
||
|
fixture.detectChanges();
|
||
|
});
|
||
|
|
||
|
it('should create', () => {
|
||
|
expect(component).toBeTruthy();
|
||
|
});
|
||
|
});
|