diff options
author | Sonja Galovic <galovicsonja@gmail.com> | 2022-03-13 23:30:29 +0100 |
---|---|---|
committer | Sonja Galovic <galovicsonja@gmail.com> | 2022-03-13 23:30:29 +0100 |
commit | 24679faf85c509e04c86f00dae1e6dbc08ce6e2a (patch) | |
tree | 698c23d02a901ecdc44ba5ba3052e522cc8074c1 /frontend/src/app/_modals/register-modal/register-modal.component.spec.ts | |
parent | a561c4bed81a7399dbe900253c0576ad0ba6f5e7 (diff) |
Doradjen login-modal.component i uradjen register-modal.component (stilski uredjen modal register forme)
Diffstat (limited to 'frontend/src/app/_modals/register-modal/register-modal.component.spec.ts')
-rw-r--r-- | frontend/src/app/_modals/register-modal/register-modal.component.spec.ts | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/frontend/src/app/_modals/register-modal/register-modal.component.spec.ts b/frontend/src/app/_modals/register-modal/register-modal.component.spec.ts new file mode 100644 index 00000000..e371b3d8 --- /dev/null +++ b/frontend/src/app/_modals/register-modal/register-modal.component.spec.ts @@ -0,0 +1,25 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { RegisterModalComponent } from './register-modal.component'; + +describe('RegisterModalComponent', () => { + let component: RegisterModalComponent; + let fixture: ComponentFixture<RegisterModalComponent>; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + declarations: [ RegisterModalComponent ] + }) + .compileComponents(); + }); + + beforeEach(() => { + fixture = TestBed.createComponent(RegisterModalComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); |