Command Palette
Search for a command to run...
Comments
Join the discussionNo comments yet. Be the first to comment.
Testing Angular applications
In this series, I will explain why people don't write tests and why they should be doing it. Next, I'll introduce you to code testing and show how to test an Angular application.
Getting started testing with Jest
The methodology This series will be based on the black box testing methodology. What does that even mean? It means that there is input data provided, then internal processing occurs (a.k.a. black box) and results are produced. The tester is not aware...
More from this blog
Angular - binding to protected properties
Before Angular@14 we could only bind public properties in views. Even though, the properties were meant to be private to the component, we had to make them public. This led to exposing component internals to the consumer. Now, we can make use of type...

NgRx Standalone API
In this article, I'll show how to use NgRx with Angular Standalone API. If you're not familiar with it, please refer to the https://barcioch.pro/angular-standalone-components-directives-pipes article. The following examples show how to define a store...

Angular standalone components, directives, pipes
The standalone components are getting more and more attention in the Angular world. Even the creators encourage people to use them by default. In this article, I'll show how to use standalone components, directives and pipes. Setup If unsure how to s...

Understanding Data Passing in Angular Using Router and Component Binding (ComponentInputBinding)
In this article, I'll show how to extract parameters and data from Angular routes using the component input binding feature. Setup If unsure how to set up Angular with Jest please refer to the article: https://barcioch.pro/angular-with-jest-setup. Co...

Getting Started with Angular Route Parameters: A Beginner's Guide to Accessing and Testing Route Parameters
In this article, I'll show how to extract parameters and data from Angular routes using the native ActivatedRoute. Setup If unsure how to set up Angular with Jest please refer to the article: https://barcioch.pro/angular-with-jest-setup. helper pipe ...
