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