Deepcopy of JavaScript Objects and Arrays using lodash’s cloneDeep method

Audio tape on a glass table

While developing JavaScript applications, often we need to make copies of Objects or Arrays containing Objects. Then we want to work with those copies without affecting the original objects. In a common scenario, we are going to deal with a simple, one level Object (an Object without other Objects nested inside), like in the following […]

Continue reading


How to run Angular tests on CI Docker Container with Chrome

Pipeline with open end pointing to the sky

In this article, we are going to learn how to run the tests of an Angular solution generated with @angular/cli into a Docker Container without changing any of the initial configuration generated by @angular/cli. This is very important in the context of Continuous Integration workflow when you want to run your tests as you commit […]

Continue reading