Apollo/apollo-frontend/src/app/dashboard-cards/dashboard-cards.component.spec.ts
2021-03-12 11:16:13 +02:00

26 lines
683 B
TypeScript

import { ComponentFixture, TestBed } from '@angular/core/testing';
import { DashboardCardsComponent } from './dashboard-cards.component';
describe('DashboardCardsComponent', () => {
let component: DashboardCardsComponent;
let fixture: ComponentFixture<DashboardCardsComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ DashboardCardsComponent ]
})
.compileComponents();
});
beforeEach(() => {
fixture = TestBed.createComponent(DashboardCardsComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});