test: add initial test file

This commit is contained in:
2025-01-27 17:34:25 +01:00
parent d3481d68bf
commit 5593d27be7

View File

@ -0,0 +1,25 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { ScanTableComponent } from './scan-table.component';
describe('ScanTableComponent', () => {
let component: ScanTableComponent;
let fixture: ComponentFixture<ScanTableComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ScanTableComponent],
}).compileComponents();
});
beforeEach(() => {
fixture = TestBed.createComponent(ScanTableComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
// Add more tests here
});