bptlab/scylla-ui

View on GitHub
src/app/statistics/activity/activity-kpi/activity-kpi.component.spec.ts

Summary

Maintainability
B
6 hrs
Test Coverage
import { async, ComponentFixture, TestBed } from '@angular/core/testing';

import { ActivityKpiComponent } from './activity-kpi.component';
import {CUSTOM_ELEMENTS_SCHEMA} from '@angular/core';

describe('ActivityKpiComponent', () => {
  let component: ActivityKpiComponent;
  let fixture: ComponentFixture<ActivityKpiComponent>;

  beforeEach(async(() => {
    TestBed.configureTestingModule({
      declarations: [ ActivityKpiComponent ],
      schemas: [CUSTOM_ELEMENTS_SCHEMA],
    })
    .compileComponents();
  }));

  beforeEach(() => {
    fixture = TestBed.createComponent(ActivityKpiComponent);
    component = fixture.componentInstance;
    fixture.detectChanges();
  });

  it('should create', () => {
    expect(component).toBeTruthy();
  });
});