swedishchamber-granprize-admin/src/app/judge-list/judge-list.component.spec.ts
2018-05-10 16:39:05 +02:00

26 lines
650 B
TypeScript

import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { JudgeListComponent } from './judge-list.component';
describe('JudgeListComponent', () => {
let component: JudgeListComponent;
let fixture: ComponentFixture<JudgeListComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ JudgeListComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(JudgeListComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});