diff options
author | Sonja Galovic <galovicsonja@gmail.com> | 2022-03-13 15:59:05 +0100 |
---|---|---|
committer | Sonja Galovic <galovicsonja@gmail.com> | 2022-03-13 15:59:05 +0100 |
commit | 52618d7d8dcb8e570912e9924d39bf6ba9d68d1e (patch) | |
tree | 8687220dc5f9ac4968cfb35902c8d8efd61ed938 /frontend/src/app/_modals/login-modal/login-modal.component.spec.ts | |
parent | a084a81779b5a38440f5d7f15e4d2beace6a32f9 (diff) |
Napravljen folder _modals u projektu. Kreirana login-modal.component (stilski uredjen modal login forme).
Diffstat (limited to 'frontend/src/app/_modals/login-modal/login-modal.component.spec.ts')
-rw-r--r-- | frontend/src/app/_modals/login-modal/login-modal.component.spec.ts | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/frontend/src/app/_modals/login-modal/login-modal.component.spec.ts b/frontend/src/app/_modals/login-modal/login-modal.component.spec.ts new file mode 100644 index 00000000..7d0d526a --- /dev/null +++ b/frontend/src/app/_modals/login-modal/login-modal.component.spec.ts @@ -0,0 +1,25 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { LoginModalComponent } from './login-modal.component'; + +describe('LoginModalComponent', () => { + let component: LoginModalComponent; + let fixture: ComponentFixture<LoginModalComponent>; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + declarations: [ LoginModalComponent ] + }) + .compileComponents(); + }); + + beforeEach(() => { + fixture = TestBed.createComponent(LoginModalComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); |