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 Jaimehdijai.hashnode.dev·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 Jaimehdijai.hashnode.dev·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
Mehdi Jaimehdijai.hashnode.dev·Jul 23, 2024Create Authentication system with NodeJS, ExpressJS, TypeScript and Jest E2E testing -- PART 1.GitHub Repo Part 1 Part 2 Part 3 Part 4 What we are building Introduction ExpressJS Web API with JWT full Auth System In this article, we will walk through the full process of building an ExpressJS API with JWT Authentication system, and E2E...DiscussNodeExpAPINode.js
Bilge Pamukcubilge.hashnode.dev·Jul 14, 2024How to Run Integration Tests with Postman Collections on TeamCity: A Step-by-Step GuidePostman collections are commonly used for integration, contract, and as a part of end-to-end testing. In this article, considering the popularity and practicality of Postman, I'll cover typical steps to run a Postman collection test set inside a Team...Discuss·57 readsProgrammingcontract-testing
James Thomasjamestechblog.hashnode.dev·Jul 10, 2024How End-to-End Testing Can Improve Software QualityIntroduction With the captivating technique of end-to-end testing, delve into the dynamic realm of software testing—a prevalent practice in agile and various testing methodologies. Unlike unit and functional testing, it surpasses individual units, fo...Discussend to end testing
James Thomasjamestechblog.hashnode.dev·Jul 1, 2024Navigating the Future: Exploring Appium Testing for Smart TVsIn the realm of software testing, smart TVs represent a distinct challenge. Their unique interfaces, embedded features, and distinct operating systems demand specialized tools and expertise. Enter Appium, a powerful testing tool, that has been extend...Discuss Appium for LG WebOS TV
Sean Coughlinblog.seancoughlin.me·Jun 26, 2024Comparing JavaScript End-to-End Testing Frameworks: Cypress vs. Selenium vs. PlaywrightIntroduction In the realm of modern web development, ensuring your application works seamlessly across various environments is crucial. End-to-end (E2E) testing plays a significant role in achieving this by verifying the complete functionality of an ...Discuss·381 readsTypes of Software TestingJavaScript