πŸ”¬ Software Testing Tutorial

Software Testing Tutorial with the models of TDD, BDD, and Red-Green-Refactor cycle with examples.

πŸ§‘β€πŸ’» Testing Paradigms of Software Tests: TDD vs BDD There are different ways to build and test code, with some of the most common paradigms being Behavior-Driven Development (BDD) and Test-Driven Development (TDD). These approaches are widely used in software development and are often mentioned in job advertisements. In this tutorial, we’ll focus on the TDD approach, but we’ll also touch on BDD, as these paradigms are often used together. 🧩 Behavior-Driven Development (BDD) Behavior-Driven Development (BDD) is based on testing the expected outcome of an action. It’s a manual testing approach where we test the application by interacting with […]

2 Views

πŸ€– Maintaining and Installing Node.js on Windows Machine

A step-by-step guide on installing Node.js on Windows with Volta.

🎯 Introduction JavaScript is a powerful language, often run in the browser to manipulate the DOM and add interactivity. However, when working with advanced JavaScript frameworks like React or tools like Jest for automated testing, it’s necessary to run JavaScript outside of the browser. This is where Node.js comes in. Node.js is an open-source JavaScript runtime that allows you to run JavaScript code in your development environment, independent of a browser. To take advantage of Node.js in your local environment and manage different versions of it (as required by various frameworks), you need to install Node.js and use a tool […]

6 Views

LOGIN