aboutsummaryrefslogtreecommitdiff
path: root/sandbox/test-projekat-danijel/frontend/src/app/page-one/page-one.component.spec.ts
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/test-projekat-danijel/frontend/src/app/page-one/page-one.component.spec.ts')
-rw-r--r--sandbox/test-projekat-danijel/frontend/src/app/page-one/page-one.component.spec.ts25
1 files changed, 25 insertions, 0 deletions
diff --git a/sandbox/test-projekat-danijel/frontend/src/app/page-one/page-one.component.spec.ts b/sandbox/test-projekat-danijel/frontend/src/app/page-one/page-one.component.spec.ts
new file mode 100644
index 00000000..9270aeda
--- /dev/null
+++ b/sandbox/test-projekat-danijel/frontend/src/app/page-one/page-one.component.spec.ts
@@ -0,0 +1,25 @@
+import { ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { PageOneComponent } from './page-one.component';
+
+describe('PageOneComponent', () => {
+ let component: PageOneComponent;
+ let fixture: ComponentFixture<PageOneComponent>;
+
+ beforeEach(async () => {
+ await TestBed.configureTestingModule({
+ declarations: [ PageOneComponent ]
+ })
+ .compileComponents();
+ });
+
+ beforeEach(() => {
+ fixture = TestBed.createComponent(PageOneComponent);
+ component = fixture.componentInstance;
+ fixture.detectChanges();
+ });
+
+ it('should create', () => {
+ expect(component).toBeTruthy();
+ });
+});