mirror of
https://github.com/AIR-EISTI/hades.git
synced 2025-01-10 11:31:30 +01:00
12 lines
346 B
TypeScript
12 lines
346 B
TypeScript
import { TestBed } from '@angular/core/testing';
|
|
|
|
import { WebSocketService } from './websocket.service';
|
|
|
|
describe('ConsoleService', () => {
|
|
beforeEach(() => TestBed.configureTestingModule({}));
|
|
|
|
it('should be created', () => {
|
|
const service: WebSocketService = TestBed.get(WebSocketService);
|
|
expect(service).toBeTruthy();
|
|
});
|
|
});
|