26 lines
650 B
TypeScript
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();
|
||
|
|
});
|
||
|
|
});
|