openvidu/openvidu-components-angular/src/app/testing-app/testing.component.spec.ts

26 lines
633 B
TypeScript

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