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