unit test

This commit is contained in:
Bastian Wagner
2026-03-11 14:46:36 +01:00
parent 5a15847c4a
commit 0a7285c6c3
2 changed files with 1 additions and 24 deletions

View File

@@ -7,7 +7,7 @@
"start:remote": "ng serve --configuration remote",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "jest",
"test": "ng test",
"test:recent": "jest --onlyChanged",
"test:watch": "jest --watch --onlyChanged"
},

View File

@@ -1,23 +0,0 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { DeleteKeyFromArchiveComponent } from './delete-key-from-archive.component';
describe('DeleteKeyFromArchiveComponent', () => {
let component: DeleteKeyFromArchiveComponent;
let fixture: ComponentFixture<DeleteKeyFromArchiveComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [DeleteKeyFromArchiveComponent]
})
.compileComponents();
fixture = TestBed.createComponent(DeleteKeyFromArchiveComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});