hades/client/app/server/server.component.spec.ts

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();
});
});