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