From 5593d27be7df82f855c4a1ec2619fceb34433c85 Mon Sep 17 00:00:00 2001 From: appel_c Date: Mon, 27 Jan 2025 17:34:25 +0100 Subject: [PATCH] test: add initial test file --- .../scan-table/scan-table.component.spec.ts | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/frontend/bec_atlas/src/app/scan-table/scan-table.component.spec.ts b/frontend/bec_atlas/src/app/scan-table/scan-table.component.spec.ts index e69de29..c5175d2 100644 --- a/frontend/bec_atlas/src/app/scan-table/scan-table.component.spec.ts +++ b/frontend/bec_atlas/src/app/scan-table/scan-table.component.spec.ts @@ -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; + + 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 +});