by Adolfo Arnold | May 4, 2021 | Blog
One of the fundamental concepts of Angular are the Modules called NgModules. We can define a NgModule as a container of blocks of code that belong to the same flow, to the same functionality, or are dedicated to a specific application domain. Within these modules, we...
by Adolfo Arnold | Dec 23, 2020 | Blog
The first time I opened a test file, which we usually find after creating a new project using Angular CLI, I felt a bit lost. As I was much more familiar with test frameworks such as XUnit or NUnit, I tried to match the parts of a test file in NUnit and those present...
by Adolfo Arnold | Jul 1, 2020 | Blog
In my previous article. i showed what GraphQL is and how we can create an API with HotChocolate. Starting from the code on my repo https://github.com/AARNOLD87/GraphQLWithHotChocolate let’s see how we can test the project. This is not a unit test,...
by Adolfo Arnold | Mar 25, 2020 | Blog
How often have you called an API and received more data than needed? Or, on the contrary, you obtained less than necessary and therefore have to make more calls to different endpoints to have all the information required?Those two events are...
by Adolfo Arnold | Jan 8, 2020 | Blog
It often happens we need to solve a problem already solved in a previous project using a simple copy and paste of the code. This is a fast and easy solution, but it may cause secondary effects, the worst of whom is the discovery of a bug that needs to be corrected in...