暂无描述

candidate-list.component.spec.ts 676B

12345678910111213141516171819202122232425
  1. import { ComponentFixture, TestBed } from '@angular/core/testing';
  2. import { CandidateListComponent } from './candidate-list.component';
  3. describe('CandidateListComponent', () => {
  4. let component: CandidateListComponent;
  5. let fixture: ComponentFixture<CandidateListComponent>;
  6. beforeEach(async () => {
  7. await TestBed.configureTestingModule({
  8. declarations: [ CandidateListComponent ]
  9. })
  10. .compileComponents();
  11. });
  12. beforeEach(() => {
  13. fixture = TestBed.createComponent(CandidateListComponent);
  14. component = fixture.componentInstance;
  15. fixture.detectChanges();
  16. });
  17. it('should create', () => {
  18. expect(component).toBeTruthy();
  19. });
  20. });

Powered by TurnKey Linux.