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