teams.component.spec.ts 552 B

12345678910111213141516171819202122
  1. import { ComponentFixture, TestBed } from '@angular/core/testing';
  2. import { TeamsComponent } from './teams.component';
  3. describe('TeamsComponent', () => {
  4. let component: TeamsComponent;
  5. let fixture: ComponentFixture<TeamsComponent>;
  6. beforeEach(() => {
  7. TestBed.configureTestingModule({
  8. declarations: [TeamsComponent]
  9. });
  10. fixture = TestBed.createComponent(TeamsComponent);
  11. component = fixture.componentInstance;
  12. fixture.detectChanges();
  13. });
  14. it('should create', () => {
  15. expect(component).toBeTruthy();
  16. });
  17. });