Files
rona-frontend/src/app/chat/entry/entry.component.spec.ts
Daniel Lukats d90204d34c initial commit
- contains basic chat via websocket
- contains button to test websocket
- contains button to test rest api
2020-07-19 22:16:23 +02:00

26 lines
621 B
TypeScript

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