bildungdb/src/app/beruf/beruf.component.spec.ts
2022-08-26 15:37:05 +02:00

26 lines
619 B
TypeScript

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