Alexander Sawtschuk

Results 11 comments of Alexander Sawtschuk
trafficstars

@davejhahn could you try updating to at least 1.18.1? There's a version bump for the underlying kubernetes go client. It fixed a similar sounding issue I had, since there is...

`booleanIntersects` will find out if there is shared geometry between two geometries. So if you have a Polygon and a LineString, `booleanIntersects` will also return true if the LineString is...

In your example, you define `line` as: ``` const line = turf.lineString([highlight_centroid, centroid]); ``` where `highlight_centroid` and `centroid` are Features themselves (with a Point geometry), but `turf.lineString` expects an array...

I don't know the contents of your SharedModule, but if you're missing the translate pipe in your PricingComponent, then you need to add an import for `TranslateModule`, e.g. ```ts @Component({...

Seems to me like this can be regarded as resolved. jest-preset-angular added support for input signals, queries and models in [^14.0.1](https://github.com/thymikee/jest-preset-angular/blob/main/CHANGELOG.md) For comparison, this is @Sebastian-G 's stackblitz with `@angular-builders/[email protected]`...

Fair enough, my comment was jest-centric. I have no idea about jasmine

Does it work with `await fixture.whenStable()`? E.g. ``` mutation.mutateAsync() await fixture.whenStable() controller.expectOne(..) ```

I find myself manually patching `node_modules/nx-remotecache-custom/log.js`, to replace ```ts const log = console.log ``` with ```ts const log = () => {} ``` to have cleaner log output. I'd be...

I tried it with silent, but the output still looks like this: Whereas I would have hoped for just one chunk like this, that continuously updates. I get this only...

This issue has been fixed in Nx directly: https://github.com/nrwl/nx/blob/3d9bd16ce0f322e28e082bbb09f73069310ed6f2/packages/nx/src/tasks-runner/task-env.ts#L186-L201