Files
keyvault/client/src/app/modules/keys/create/create.component.spec.ts
Bastian Wagner 5e2b900b18 create angefangen
2024-10-18 17:26:36 +02:00

24 lines
607 B
TypeScript

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();
});
});