diff options
author | Nevena Bojovic <nenabojov@gmail.com> | 2022-03-20 21:11:18 +0100 |
---|---|---|
committer | Nevena Bojovic <nenabojov@gmail.com> | 2022-03-20 21:11:18 +0100 |
commit | 34254357ea1a6c15b386162b63eb451e91895c9d (patch) | |
tree | 24ef2b6d529cf81d0be0e2efd56e9e4c474f4806 /frontend/src/app/barchart/barchart.component.spec.ts | |
parent | 1f4d193f475c627cd06989188ca98ba12da368a5 (diff) |
Doradjeni grafici.
Diffstat (limited to 'frontend/src/app/barchart/barchart.component.spec.ts')
-rw-r--r-- | frontend/src/app/barchart/barchart.component.spec.ts | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/frontend/src/app/barchart/barchart.component.spec.ts b/frontend/src/app/barchart/barchart.component.spec.ts new file mode 100644 index 00000000..8b346d1c --- /dev/null +++ b/frontend/src/app/barchart/barchart.component.spec.ts @@ -0,0 +1,25 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { BarchartComponent } from './barchart.component'; + +describe('BarchartComponent', () => { + let component: BarchartComponent; + let fixture: ComponentFixture<BarchartComponent>; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + declarations: [ BarchartComponent ] + }) + .compileComponents(); + }); + + beforeEach(() => { + fixture = TestBed.createComponent(BarchartComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); |