import { ComponentFixture, TestBed } from '@angular/core/testing'; import { CaLastFuelPriceProgressComponent } from './ca-last-fuel-price-progress.component'; describe('CaLastFuelPriceProgressComponent', () => { let component: CaLastFuelPriceProgressComponent; let fixture: ComponentFixture; beforeEach(async () => { await TestBed.configureTestingModule({ imports: [CaLastFuelPriceProgressComponent] }) .compileComponents(); fixture = TestBed.createComponent(CaLastFuelPriceProgressComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });