GipHub123
GipHub123
CloudFront supports HTTP/2 but it requires that your browser or server support its. Angular uses HTTP/2 if your browser or server supports its. In SSR (Server Side Rendering) HTTP/2 support...
Sorry, I do not understand your comment about API Gateway / ALB . Why it's relevant in SSR?
I'll try to explain this in more detail. -------------------------------------------------------------------------------- Client: -------------------------------------------------------------------------------- 1) Client request HTML -page for the first time. ---------------------------------------------------------------------------------- Server: ---------------------------------------------------------------------------------- 2) Request starts Angular's bootstrap process. 3)...
No worries 😊 As I mentioned problem is quite easy to fix with a work around 👍
I can confirm this one 👍 Having same problems after the change.
@GITOrion8112 Error message hints that CommonModule is not available in your test case setup. Try adding missing imports. ``` beforeEach(async () => { return MockBuilder(AppComponent) .keep(RouterOutlet) .keep(CommonModule) .keep(MatTabsModule) }); ```
@Kogs To test standalone components, try setting up your test cases using `MockBuilder`; Check example: https://github.com/help-me-mom/ng-mocks/blob/master/examples/TestStandaloneComponent/test.spec.ts ``` beforeEach(async () => { return MockBuilder(MyComp) .keep(MyComp1) .mock(MyComp2); }); ``` Here is another...
`Your comment about that you should probably mock MyComp2 as well, can be true, but is largely dependent of the test your are writing. Also using the MockBuilder forces you...
@handja Could you provide a complete example of how you set up your test cases?
@Sergiu-Solomon The error message here is quite clear. ColumnChooserComponent is a standalone component, but for some reason it has been added to the declarations in the DxoColumnChooserModule. Only traditional module-based...