This commit is contained in:
2023-07-04 16:03:33 +02:00
parent 98602bb39f
commit 0af9852722
65 changed files with 10921 additions and 4390 deletions

View File

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