AltitudeWeb/frontend/src/app/bans/bans.component.spec.ts

24 lines
578 B
TypeScript
Raw Normal View History

2025-04-11 19:20:02 +00:00
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { BansComponent } from './bans.component';
describe('BansComponent', () => {
let component: BansComponent;
let fixture: ComponentFixture<BansComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [BansComponent]
})
.compileComponents();
fixture = TestBed.createComponent(BansComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});