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.
Development Practices Max Coverage, Minimum Time: An Efficient Android Development Testing Strategy By applying this comprehensive and efficient testing strategy, we can ensure a high-quality, reliable Android application.
Development Practices Achieve Cleaner Test Setup with the Blueprint Pattern The Blueprint pattern abstracts the creation of data models into reusable, type-safe helpers, reducing boilerplate and improving readability.
.NET / WPF 3 Useful AutoFixture Features to Level Up Your .NET Testing Game AutoFixture is a useful, but sometimes overwhelming, library for .NET tests. Here are some fun features to keep in your back pocket.
Development Practices Duct Tape Your Problems Away with Patch-Package The tool patch-package gives you a super easy way to create and apply your own small patch to an npm library.
Prisma Build Test Data Factories with Prisma Why bother with data factories when you can just add whatever data you want in your tests? Creating data on the spot has a few drawbacks.
C# Running into Problems Testing with DateTime.Now()? Here’s the Fix Using DateTime.Now() in your business logic can cause issues when it's time for writing tests. Here's my approach for fixing this.