Timeout

Results 4 comments of Timeout

I replaced HttpClientTestingModule with HttpClientModule, but I received the same message. Im using Cypress 7.6.0 Angular 10.2

Yes, the setting is in both tsconfig.json The tsconfig.json at the project's root folder and the tsconfig.json at the root of the test folder ```json { "compileOnSave": false, "compilerOptions": {...

I found out that if I'm using this in my constructor, I don't get the error anymore... Component-File: ` constructor(@Inject(forwardRef(() => CustomService)) private service: CustomService) { } ` Service-File: `...

I was able to fix the entire problem in my project. Problem was that I required core-js 2.* instead of core-js 3.* The reflection didn't work properly with core-js 3...