Test Driven Development Test DynamoDB with Jest Shelf Jest’s DynamoDB shelf is a small utility that wraps DynamoDB Local and makes it incredibly simple to spin up a temporary instance.
Development Practices How To Write Cypress E2E Tests That Aren’t Flaky Writing reliable Cypress E2E tests isn't always straightforward. Learn practical tips to make your tests more stable and less flaky.
Exploratory Testing QATesting is Not Possible! When something is in the Quality Assurance (QA) column, it means the app has been put on the QA drive for QA to do QA on. Right?
Exploratory Testing Tips for Unit Testing in Front-End Frameworks: Part 2 In the second installment of "Tips for Unit Testing in Front-end Frameworks," we'll determine our testing prerequisites.
Test Driven Development Test Your Software or Your Users Will End users don't know or care about acceptance criteria! The only useful measure of the product quality is the user experience with it.
C# Here’s How to Use Bogus to Populate Your Test Data A fake data generation library like Bogus streamlines your testing workflow and ensures your tests use realistic-looking data.
Exploratory Testing Jest Setup: Gotchas with Next and MUI If you're setting up UI tests with Jest and React Testing Library and then adding in NextJS and Material UI, watch for these three things.
Exploratory Testing What Does Giving a Project “a Quick Lookover” Mean for a Tester? Sometimes, testing is introduced late in a software project, and I'm asked to "give it a lookover" for any serious issues. Here's my approach.
GitHub Actions Run Detox Tests with GitHub Actions, Part 1: Add a New Workflow Automating Detox tests for a React Native app can be challenging. Learn how my team handled it with GitHub Actions.
Development Practices 4 Tips for Writing More Testable Code I recently paired with a developer new to automated testing and shared tips I've picked up over the years on how to write more testable code.
Exploratory Testing Ensuring Reliability in AI-Powered Applications: Testing Strategies for Generative AI Discover techniques for testing generative AI applications and how to ensure reliable, high-quality AI software with robust testing methods.
C# Mock a DbContextFactory for Repository Unit Tests in .Net Core In a .Net Core project, if you’re using the DbContextFactory class to create DbContext instances, you may run into problems.