Hello everybody! As promised, here is my first video tutorial showing you how to go about splitting your component library into separate JavaScript bundles in Angular v9. I decided to split the tutorial into separate videos and add them to a playlist. That way, you are able to jump around […]
Monthly Archives: April 2020
Building accessible web applications begin by us writing semantic HTML in our templates. So if an interaction is used as a button, then we should use the “<button>” HTML element. For cases where we need to give custom styles and elements, like web components, a more accurate description, we should […]
I am highly sensitive to bad user interface design. It’s a given due to my specialization in front end development. It justifies the improvements I do to help other people. One day in late 2018, I paid a visit to the Social Security Administration office in Chicago. Automated machines generated […]
E2E tests are hard because they test everything. In a web application, they touch your UI, APIs, and databases. When there are so many touchpoints, something will go wrong. And let’s be clear, you want that. However, the hard part is figuring out how to structure your end-to-end tests to […]
Cypress is an end-to-end testing framework for web applications. It is used to validate that your web applications UI and backend systems are all working as intended. End-to-end testing is crucial when you need to confirm major functionality in your web app still works after every new code commit. Cypress […]