This repository has been archived on 2025-05-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
wwtech-website/src/app/components/dienstleistung/dienstleistung.component.spec.ts
2023-07-04 16:03:33 +02:00

22 lines
648 B
TypeScript

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