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