import{TestBed,async}from'@angular/core/testing';import{RouterTestingModule}from'@angular/router/testing';import{AppComponent}from'./app.component';import{TranslateModule}from'@ngx-translate/core';import{ElectronService}from'./core/services';describe('AppComponent',()=>{beforeEach(async(()=>{TestBed.configureTestingModule({declarations:[AppComponent],providers:[ElectronService],imports:[RouterTestingModule,TranslateModule.forRoot()]}).compileComponents();}));it('should create the app',async(()=>{constfixture=TestBed.createComponent(AppComponent);constapp=fixture.debugElement.componentInstance;expect(app).toBeTruthy();}));});