mirror of
https://github.com/AIR-EISTI/hades.git
synced 2025-07-05 13:03:26 +02:00
Retrieving server info on load Server info live update with WS Better style
12 lines
333 B
TypeScript
12 lines
333 B
TypeScript
import { TestBed } from '@angular/core/testing';
|
|
|
|
import { ServerService } from './server.service';
|
|
|
|
describe('ServerService', () => {
|
|
beforeEach(() => TestBed.configureTestingModule({}));
|
|
|
|
it('should be created', () => {
|
|
const service: ServerService = TestBed.get(ServerService);
|
|
expect(service).toBeTruthy();
|
|
});
|
|
});
|