- contains basic chat via websocket - contains button to test websocket - contains button to test rest api
26 lines
621 B
TypeScript
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();
|
|
});
|
|
});
|