Daniel Kimmich

Results 15 comments of Daniel Kimmich

Imho this is not enough. Based on the changes list in the link you provided, I have no idea what I need to adjust in my code. What I am...

You have to import the `TranslateModule`: ``` beforeEach(async(() => { TestBed.configureTestingModule({ imports: [TranslateModule.forRoot()], declarations: [DashboardComponent] }) .compileComponents(); })); ```

I had the same issue after updating my project to Angular 11, and trying to set up `karma-coverage`. Fixed it by adding the `kjhtml` reporter instead of the `coverage` reporter:...

@wereHamster I cannot reproduce this. For me, everything works fine: ``` /** * @deprecated */ declare function lorem(maxWordsCount: number, sentencesMode: boolean): string; declare function lorem(constraints: { maxCount: number }): string;...

@Delagen unfortunately this is still an issue with the latest version.

[Material Design's text fields](https://material.io/components/text-fields) changed their appearance. Do you plan to adapt to those changes?

I'm having the same issue. Any progress here? I also think the suggested `this.changeDetectorRef.detectChanges()` call should fix it.

I'm already using the angular builder, same issue. For me, the workaround works.

In my real project the error is gone after updating to Storybook 6.5, however in the reproduction repo the error still appears. Can't tell why, will keep you updated.