Enums are set of named constants. Their ability to create a set of distinct cases makes it best option to use with our ngrx reducers. We use those enums to represent NGRX actions as

Enums are set of named constants. Their ability to create a set of distinct cases makes it best option to use with our ngrx reducers. We use those enums to represent NGRX actions as
Barrel file is a single place to re export your functions, variables etc for your modules. I have divided this post into Introduction Caveats Case Study
Those of you who are getting into angular testing, normally face this error. Usually this happen when we set the testing environment for Angular. These are the lines These are the culprits TestBed.initTestEnvironment( BrowserDynamicTestingModule, platformBrowserDynamicTesting() ) // or wrapped in beforeAll beforeAll(() { TestBed.initTestEnvironment( BrowserDynamicTestingModule, platformBrowserDynamicTesting() ) }) Diagnosing & Solution I might not have […]
Previously on this blog. Person A: I need a chart on my app, which looks like a circle. A circle without the center. Person B: A what, you mean pie. Person A: Not a pie it has it’s name. Person B: “What name” Person A: It start with d, da, a Person B: A doughnut chart […]