26 lines
704 B
TypeScript
26 lines
704 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { TaskgroupCreationComponent } from './taskgroup-creation.component';
|
|
|
|
describe('TaskgroupCreationComponent', () => {
|
|
let component: TaskgroupCreationComponent;
|
|
let fixture: ComponentFixture<TaskgroupCreationComponent>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
declarations: [ TaskgroupCreationComponent ]
|
|
})
|
|
.compileComponents();
|
|
});
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(TaskgroupCreationComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|