Most testing focuses on the output: did the API return the right response? But I've started treating observability as a…
15 discussions
Most testing focuses on the output: did the API return the right response? But I've started treating observability as a…
This is the most frustrating debugging scenario I encounter regularly. Test passes 100% locally, fails 30–80% in CI. My…
We have 8 microservices. Testing strategy question: where do you draw the line between testing each service in…
Our flake rate is ~4% per test in CI (down from 9% after a big cleanup push). With 800 tests that means ~32 flaky…
Our payments API calls Stripe, our notifications API calls SendGrid, and our geolocation API calls Google Maps. All…
We integrate with: Stripe (payments), SendGrid (email), Twilio (SMS), and Segment (analytics). Each has a sandbox/test…
StaleElementReferenceException is the bane of our Selenium suite. We get maybe 20–30 per CI run across 800 tests,…
We have two camps on our team: Camp A (shared environment): Tests run against a shared staging server. Fast to set up,…
We're an SDET team testing a service that uses a database we don't own — the schema is managed by a platform team and…
We have engineers in India, UK, and US. Our tests occasionally fail due to timezone-dependent logic: - Date range…
I had an idea: take our flaky test history (test name, failure messages, stack traces, timestamps) and feed it to an…
Our test suite hits a third-party API (Stripe sandbox) and we occasionally get 429s in CI, causing random test…
We had a bug where a function-scoped test was accidentally using a session-scoped fixture that mutated shared state.…
We have a real-time dashboard that uses WebSockets and I'm struggling to write reliable tests for it. The main…
Flaky tests are killing our team's confidence in the test suite. We're seeing around 8–12% flake rate on our Playwright…