From 38c59d321f84ddfb21029df1ccd2979094c95670 Mon Sep 17 00:00:00 2001 From: Ivan Ljubisavljevic Date: Wed, 2 Mar 2022 20:05:03 +0100 Subject: Dodat frontend za test app --- .../src/app/navbar/navbar.component.spec.ts | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100755 sandbox/TestIvanLjubisavljevic/frontend/src/app/navbar/navbar.component.spec.ts (limited to 'sandbox/TestIvanLjubisavljevic/frontend/src/app/navbar/navbar.component.spec.ts') diff --git a/sandbox/TestIvanLjubisavljevic/frontend/src/app/navbar/navbar.component.spec.ts b/sandbox/TestIvanLjubisavljevic/frontend/src/app/navbar/navbar.component.spec.ts new file mode 100755 index 00000000..f8ccd6f4 --- /dev/null +++ b/sandbox/TestIvanLjubisavljevic/frontend/src/app/navbar/navbar.component.spec.ts @@ -0,0 +1,25 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { NavbarComponent } from './navbar.component'; + +describe('NavbarComponent', () => { + let component: NavbarComponent; + let fixture: ComponentFixture; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + declarations: [ NavbarComponent ] + }) + .compileComponents(); + }); + + beforeEach(() => { + fixture = TestBed.createComponent(NavbarComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); -- cgit v1.2.3