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