Files
adastra_app/src/app/components/herowars-guildraid/herowars-guildraid.component.spec.ts
T
2025-11-27 10:35:38 +01:00

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();
});
});