Mitarbeiter erstellen #66

Merged
jank merged 4 commits from feature/create-employee into main 2025-01-15 13:06:07 +00:00
4 changed files with 36 additions and 0 deletions
Showing only changes of commit 2dc8956142 - Show all commits

View file

@ -0,0 +1 @@
<p>mitarbeiter-erstellen works!</p>

View file

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

View file

@ -0,0 +1,12 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-mitarbeiter-erstellen',
standalone: true,
imports: [],
templateUrl: './mitarbeiter-erstellen.component.html',
styleUrl: './mitarbeiter-erstellen.component.css'
})
export class MitarbeiterErstellenComponent {
}