diff options
author | Nevena Bojovic <nenabojov@gmail.com> | 2022-03-20 10:06:15 +0100 |
---|---|---|
committer | Nevena Bojovic <nenabojov@gmail.com> | 2022-03-20 10:06:15 +0100 |
commit | 1f4d193f475c627cd06989188ca98ba12da368a5 (patch) | |
tree | e51d23a84a1f5b72fefab9bca36e5da7ffa8ede0 /frontend/src/app/charts/charts.component.spec.ts | |
parent | 46c14ce54892d20ddfa51b1bcc6a9cd8bdfddfd1 (diff) |
Komponenta za iscrtavanje metrika.
Diffstat (limited to 'frontend/src/app/charts/charts.component.spec.ts')
-rw-r--r-- | frontend/src/app/charts/charts.component.spec.ts | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/frontend/src/app/charts/charts.component.spec.ts b/frontend/src/app/charts/charts.component.spec.ts new file mode 100644 index 00000000..6a4f0b75 --- /dev/null +++ b/frontend/src/app/charts/charts.component.spec.ts @@ -0,0 +1,25 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { ChartsComponent } from './charts.component'; + +describe('ChartsComponent', () => { + let component: ChartsComponent; + let fixture: ComponentFixture<ChartsComponent>; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + declarations: [ ChartsComponent ] + }) + .compileComponents(); + }); + + beforeEach(() => { + fixture = TestBed.createComponent(ChartsComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); |