create angefangen

This commit is contained in:
Bastian Wagner
2024-10-18 17:26:36 +02:00
parent 76e54cfaa0
commit 5e2b900b18
8 changed files with 136 additions and 8 deletions

View File

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