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