Commit 826789e8 authored by Olivia Madrid's avatar Olivia Madrid

remove mini chart

1 merge request!634Analytics components refactor and summary tab
Pipeline #94147697 failed with stages
in 12 minutes and 48 seconds
<p>
mini-chart works!
</p>
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { MiniChartComponent } from './mini-chart.component';
describe('MiniChartComponent', () => {
let component: MiniChartComponent;
let fixture: ComponentFixture<MiniChartComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [MiniChartComponent],
}).compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(MiniChartComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'm-miniChart',
templateUrl: './mini-chart.component.html',
})
export class MiniChartComponent implements OnInit {
constructor() {}
ngOnInit() {}
}
Please register or to comment