diff options
author | Sonja Galovic <galovicsonja@gmail.com> | 2022-04-12 22:59:12 +0200 |
---|---|---|
committer | Sonja Galovic <galovicsonja@gmail.com> | 2022-04-12 22:59:12 +0200 |
commit | 1330e8000924aa64232f1f160b32f49e20bd9958 (patch) | |
tree | 626f701403b59c5040a911714ce50f5e0fde707c /frontend/src/app/_modals/yes-no-dialog/yes-no-dialog.component.spec.ts | |
parent | 3f17af55326b0c901fddd6eb20767b4c068a779b (diff) | |
parent | dc4d2497435a7c038034f02641542cde10cf31a1 (diff) |
Merge branch 'dev' of http://gitlab.pmf.kg.ac.rs/igrannonica/neuronstellar into dev
# Conflicts:
# frontend/src/app/app.module.ts
Diffstat (limited to 'frontend/src/app/_modals/yes-no-dialog/yes-no-dialog.component.spec.ts')
-rw-r--r-- | frontend/src/app/_modals/yes-no-dialog/yes-no-dialog.component.spec.ts | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/frontend/src/app/_modals/yes-no-dialog/yes-no-dialog.component.spec.ts b/frontend/src/app/_modals/yes-no-dialog/yes-no-dialog.component.spec.ts new file mode 100644 index 00000000..eecf6468 --- /dev/null +++ b/frontend/src/app/_modals/yes-no-dialog/yes-no-dialog.component.spec.ts @@ -0,0 +1,25 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import {YesNoDialogComponent } from './yes-no-dialog.component'; + +describe('AlertDialogComponent', () => { + let component: YesNoDialogComponent; + let fixture: ComponentFixture<YesNoDialogComponent>; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + declarations: [ YesNoDialogComponent ] + }) + .compileComponents(); + }); + + beforeEach(() => { + fixture = TestBed.createComponent(YesNoDialogComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); |