After a test suite audit last quarter, we identified the problems causing the most maintenance pain. In order: 1. Tests…
60 discussions
After a test suite audit last quarter, we identified the problems causing the most maintenance pain. In order: 1. Tests…
I spent 8 months building a QA portfolio while working a non-technical job. Here's what got callbacks vs what was…
We rewrote our entire test suite (600 tests → 800 tests, Selenium Java → Playwright TypeScript) over 8 months. Honest…
I joined a FAANG-adjacent company as an SDET 18 months ago after 5 years at startups. Honest assessment: What's better…
I used to follow the orthodox TDD approach: unit tests first, then integration. I've reversed this for most of my work…
Unpopular opinion, but I think the current hype around AI test generation is leading teams to invest in workflows that…
For the first 4 years of my QA career I wrote formal test plans for every feature. Last 2 years: I've written zero.…
Here's the checklist I run through when writing API tests for a new endpoint. Not exhaustive but covers 90% of what…
We ran our first real k6 load test last quarter targeting 500 concurrent users. A few things that surprised us: The…
Test names are the first thing you read when a test fails in CI. After years of bad names, here's the convention our…
Most testing focuses on the output: did the API return the right response? But I've started treating observability as a…
I'm considering ISTQB Foundation and Advanced (Test Automation Engineer) certifications. Combined cost with study…
My new company uses Cucumber for all E2E tests. Feature files are written in Gherkin, step definitions in Java. After 2…
Every few months someone on our team brings up migrating to Playwright. We've evaluated it twice now and decided to…
0 votes · select an option to vote
The classic answer is 70% unit / 20% integration / 10% E2E. But I've never worked on a team that actually hits that…
I have a senior SDET interview at a product company (Series C, ~200 engineers) in 3 weeks. I've done 2 SDET interviews…
Our engineering director wants 80% code coverage enforced in CI. I understand the intent but I'm worried about…
Our product has a few LLM-powered features (a summarisation tool, a smart search). I'm trying to figure out how to test…
We needed to mock 3 external APIs for our integration test suite. Tried three approaches over 6 months: WireMock -…