Alix Royere

Results 8 comments of Alix Royere

You can also assign an input with `spectator.setInput('task', myTask)` or `spectator.component.task = myTask` Your `createComponent` function is initializing your component, which seems to call `component.task.id`, maybe in `ngOnInit()` (not enough...

``` let spectator: Spectator; let component: AppComponent; let roomService: SpyObject; const createComponent = createComponentFactory({ component: AppComponent, detectChanges: false, mocks: [RoomService] }); beforeEach(() => { spectator = createComponent(); component = spectator.component;...

for information, I'm no more experiencing this issue with the version 16

It would be handy, even if doable in an other way. Pipelines would be easier to read too. I have a usecase where I need to space elements because next...

Well thinking more about this, a real delayBetween operator would not only be skipping the first element waiting. That is more a special case. In fact, comparing the elapsed time...

Is there a way to prioritize this bug, please ? 🥺 The new date time picker feature is nice, but is sadly not usable for now due to this bug

That would be nice to have a computedToSignal that could subscribe to an observable and return a signal of the values, depending on an other signal. As a mix between...

Here is a reproduction link: https://stackblitz.com/edit/stackblitz-starters-xhx4k1?file=src%2Fmain.ts There is a custom validator on group, which validates that there is a maximum of 10 days between start and end dates => Input...