Márcio Gabriel
Márcio Gabriel
Also happens on Angular 13.2.2. npm: 6.14.10 node: 14.15.4 OS: Windows 10 ``` Build at: 2022-02-11T10:52:40.352Z - Hash: 12cf9ea505b4d954 - Time: 7417ms Error: node_modules/@ngx-cache/core/cache.module.d.ts:12:21 - error TS2694: Namespace '"/node_modules/@angular/core/core"' has...
Same problem for me. Please let me know if you need more info. ``` > npm install --save-dev ts-migrate npm WARN deprecated [email protected]: Please see https://github.com/lydell/urix#deprecated npm WARN deprecated [email protected]:...
Any recommended workaround to solve it on [JpaSpecificationExecutor.html#findAll(Specification spec, Pageable pageable)](https://docs.spring.io/spring-data/jpa/docs/2.7.3/api/org/springframework/data/jpa/repository/JpaSpecificationExecutor.html#findAll-org.springframework.data.jpa.domain.Specification-org.springframework.data.domain.Pageable-) at Spring Data JPA 2?
> Any recommended workaround to solve it on [JpaSpecificationExecutor.html#findAll(Specification spec, Pageable pageable)](https://docs.spring.io/spring-data/jpa/docs/2.7.3/api/org/springframework/data/jpa/repository/JpaSpecificationExecutor.html#findAll-org.springframework.data.jpa.domain.Specification-org.springframework.data.domain.Pageable-) at Spring Data JPA 2? For anyone in the same situation, one fragile alternative without using AOP is...
Possibly related to: https://github.com/apexcharts/ng-apexcharts/issues/274 Check the first comment there for a possible solution.
This happened to me when I was updating the `series` variable content: ```xml ``` ```typescript series: ApexAxisChartSeries = [{ data: [] }]; loadChartSeries() { this.series[0].data = [/* some data */];...
It works fine if `@ts-ignore` is added. ``` // @ts-ignore import JasmineDOM from '@testing-library/jasmine-dom/dist'; ``` Not sure if it can be related to the library being `@testing-library/jasmine-dom/dist` having a `/dist`...
> Hi, I'm the maintainer of the Angular Testing Library. I've included a karma example that can be found at https://github.com/testing-library/angular-testing-library/blob/main/apps/example-app-karma/src/test.ts I tried with the same `tests.ts` as on this...
We're using the same versions. From my `package.json`: ``` "@testing-library/angular": "^10.11.1", "@testing-library/dom": "^8.11.1", "@testing-library/jasmine-dom": "^1.2.0", "@types/jasmine": "~3.10.2", "jasmine-core": "~3.10.1", "karma": "^6.3.9", "karma-chrome-launcher": "~3.1.0", "karma-jasmine": "~4.0.1", "karma-jasmine-html-reporter": "~1.7.0", ``` Thanks for...
> I have the same issue. Any updates on this? @marcioggs did you find a fix? No, I still have the workaround described in the first comment.