Testing Components In Angular: NO ERRORS SCHEMA, Stub Components, and NgMocks
When we need to write a test for components, it is not hard. The pain starts when our components...
When we need to write a test for components, it is not hard. The pain starts when our components...
When I need to build real-time apps with Angular, most of the time I use SignalR, but a few days ago,...
I'm constantly exploring ways to improve user interaction on websites. Recently, while building a...
As developers, we use a lot of our coding time to fix bugs. Debugging helps us find and remove errors...
When I started to play with templates and dynamic content in angular, I get surprised by multiple...
When talking about unit testing, the first definition that comes into our head is to test the minor...
Today I was talking with my friend Leifer, and he asked me some about Functional Guards in Angular...
Since version 14, we can play with Standalone Components as an easy way to build module-less...
When we build an Angular application with multiple modules in a large app, the main script file...
When we need to have different versions and use cases and make it flexible to the changes, however,...
When we build an app, some data like the menu and options don't change with frequency. The best...
Angular help us to convert values for display using Pipes; the pipes are a way to transform input...
When we start to build the application and feel the code duplicated are in several places, our first...
When we build components in an application, we maybe need to share or send data from parent to child...
Angular, by default, comes with Jasmine; it is a great testing framework. I spent one year and a half...
When we go to a party, I love to have all beers ready to drink and take one, but sometimes take time...
When we use external libraries, it is very common to declare a global object and use it. But the...
One of the easiest things is a burger. The burger has the same base but changes its content, so let's...
When we create a component, you can reuse it in some places, and his style should also relate to his...
When we build components it needs to be flexible, because they can be used in many places or...