Ronika Kashyapronika.hashnode.dev·6 hours agoHow to check if an element exists or not using Cypress?Cypress is a tool that helps web developers and testers to make sure their websites work properly. it can check if a certain part of the website exists. This is helpful because it helps to catch problems before users do. Element presence is one of th...DiscussTesting
Ronika Kashyapronika.hashnode.dev·Nov 14, 2024The Ultimate Guide To End-to-End TestingImagine a scenario where you are launching your app with high hopes, only to see users abandon it due to unexpected glitches. One mistake or just even a minor error can turn enthusiastic customers into harsh critics. Delivering a flawless user experi...DiscussTesting
James Thomasjamestechblog.hashnode.dev·Nov 11, 2024Enhancing Serverless Architecture with Cloud-Native TestingMore organizations adopt cloud-native architectures as cloud computing evolves to drive agility, scalability, and innovation. Serverless architectures, a key component of cloud-native ecosystems, offer tremendous flexibility by abstracting infrastruc...Discuss Cloud-Native Testing
Jace Reedjacereed.hashnode.dev·Oct 17, 2024Guide to Playwright Debugging – Tips and TechniquesPlaywright is a powerful test automation tool that is gaining popularity in the software development world. The tool allows to automate browser tasks and test web applications. It offers great performance and efficiency in terms of performing automat...Discussplaywright
Ronika Kashyapronika.hashnode.dev·Oct 8, 2024DevOps Testing Explained: Types, Benefits, and Proven Best PracticesThe Apple App Store has 1.96 million apps available for download. There are 1.68 million apps users can download from Google Play Store Uninstallation rates, especially for Android apps, are almost always high – ranging from 46.76% in the USA to 65...DiscussDevops
Fahad Chandiodevopinsights.hashnode.dev·Sep 7, 2024My Week 2 in Software TestingThis week has been all about diving deeper into software testing, and I’ve picked up some really interesting concepts and techniques that I’m excited to share. Exploratory, Adhoc, and Monkey Testing First up, I got into exploratory, adhoc, and monke...DiscussTestingTechnique
Abhishek kushwahaforKeploy Community Blogkeploy.hashnode.dev·Aug 19, 2024A Guide to Testing React Components with Jest and React Testing LibraryTesting is checking if your code works the way it's supposed to. When you write a program, you have an idea of what it should do. Testing is the process of making sure it does that. It's like double-checking your work. In this article, we're diving i...DiscussReact
Sam Atinksonsamatinkson.hashnode.dev·Aug 5, 2024Deciphering Testing Strategies: A Comprehensive Analysis of System Testing versus End-to-End TestingIn the fast-paced digital arena, ensuring the robustness and reliability of software systems is paramount. For professionals like testers, product managers, SREs, DevOps, and QA engineers, navigating through varied testing strategies and selecting an...Discussend to end testing
Mehdi Jaimjdev.vercel.app·Jul 25, 2024Create Authentication system with NodeJS, ExpressJS, TypeScript and Jest E2E testing -- PART 3.GitHub Repo Part 1 Part 2 Part 3 Part 4 Auth Repository Finally, we arrived to the core logic of our project. Create now src/repositories/auth.repo.ts. In this file we gonna create a static methods class for our repo. Before that, Let's add some ot...DiscussNodeExpAPINode.js
Mehdi Jaimjdev.vercel.app·Jul 24, 2024Create Authentication system with NodeJS, ExpressJS, TypeScript and Jest E2E testing -- PART 2.GitHub Repo Part 1 Part 2 Part 3 Part 4 JWT Middleware Let's create the middleware to handle the authentications. Create this file src/middlewares/jwt.middleware.ts. This middleware takes the Authorization header (Bearer [token]) and get the t...DiscussNodeExpAPINode.js