mirror of https://github.com/AIR-EISTI/hades.git
26 lines
628 B
TypeScript
26 lines
628 B
TypeScript
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { ServerComponent } from './server.component';
|
|
|
|
describe('ServerComponent', () => {
|
|
let component: ServerComponent;
|
|
let fixture: ComponentFixture<ServerComponent>;
|
|
|
|
beforeEach(async(() => {
|
|
TestBed.configureTestingModule({
|
|
declarations: [ ServerComponent ]
|
|
})
|
|
.compileComponents();
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(ServerComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|