- contains basic chat via websocket - contains button to test websocket - contains button to test rest api
8 lines
150 B
TypeScript
8 lines
150 B
TypeScript
import { Entry } from './entry';
|
|
|
|
describe('Entry', () => {
|
|
it('should create an instance', () => {
|
|
expect(new Entry()).toBeTruthy();
|
|
});
|
|
});
|