JP

Results 7 comments of JP

> I have encountered the same problem. @JPtenBerge Try explicitly keeping NonNullableFormBuilder in addition to ReactiveFormsModule. Have tried this in various ways: ```ts beforeEach(() => MockBuilder(AppComponent).keep(ReactiveFormsModule).keep(NonNullableFormBuilder)); beforeEach(() => MockBuilder(AppComponent).keep(NonNullableFormBuilder)); ```...

> In your node_modules is cypress-daywalker version `0.1.1` installed, right? Yep. "devDependencies": { "cypress": "^3.2.0", "cypress-daywalker": "^0.1.1", "npm-run-all": "^4.1.3" } I've tried commenting out those lines inside `roboto.js`, but that...

@JaySunSyn It took me a while, but I've tested it with version 0.2.1. Sadly, exactly the same results as before: inconsistent timeouts. I'd reopen, but can't if I didn't close...

> I will now run the tests daily here https://travis-ci.com/JaySunSyn/cypress-daywalker/builds so we can check if tests fail once in a while but so far, they did not. > > I've...

> Not sure, but here are my specs: > > ![image](https://user-images.githubusercontent.com/5872432/64017906-0afe9700-cb2b-11e9-9268-009bd1500a00.png) > > With now `0.2.1` installed, same issue? Sorry for the late response, a bit busy here. But yep,...

Also, as a workaround: overriding the template makes the test pass. ```ts TestBed.configureTestingModule({ providers: [provideTanStackQuery(new QueryClient())], imports: [App], }).overrideTemplate(App, ''); ```

Oh, it's not just within the template. Any call to a query signal will cause strange behavior, like in an `effect()`: ```ts export class App { numbersQuery = injectQuery(() =>...