Can not find module 'ngx-store' from service.ts

481 Views Asked by At

currently I am running on Angular 9 ,while I am testing My Component using Jest, I am getting an error like "Can not find module 'ngx-store' from service.ts" and the code showing me which is wrong in service file (cartService).

import {SessionStorageService} from 'ngx-store-9'

there are some services injected into component's constructor . for that I am writing the code into test component.

beforeEach(()=>{imports:[WebStorageModule],providers:[{provide:cartService,useClass:mockcartService}] } What is wrong here.

0

There are 0 best solutions below