22 lines
688 B
TypeScript
22 lines
688 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { ForgottenTaskStartDialogComponent } from './forgotten-task-start-dialog.component';
|
|
|
|
describe('ForgottenTaskStartDialogComponent', () => {
|
|
let component: ForgottenTaskStartDialogComponent;
|
|
let fixture: ComponentFixture<ForgottenTaskStartDialogComponent>;
|
|
|
|
beforeEach(() => {
|
|
TestBed.configureTestingModule({
|
|
declarations: [ForgottenTaskStartDialogComponent]
|
|
});
|
|
fixture = TestBed.createComponent(ForgottenTaskStartDialogComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|