Most load test examples I see just report numbers (p95, p99, RPS) without failing the test definitively. I want our…
109 discussions
Most load test examples I see just report numbers (p95, p99, RPS) without failing the test definitively. I want our…
We have a 1,200-test suite built over 4 years. Good test coverage, but: - No documentation of test strategy or…
Mutation testing (mutmut for Python, Stryker for JS) sounds powerful in theory: introduce small code changes and verify…
Our API test suite uses a real PostgreSQL database (Docker, spun up in CI). Each test creates data and we need…
We have test credentials (API keys for sandbox environments, DB passwords, OAuth tokens) that need to be available in…
I've started using AI to generate first-pass test code. The problem: I've caught several subtle bugs in AI-generated…
REST API testing feels natural with pytest + requests, but I'm not sure how to apply the same discipline to GraphQL.…
We're running Selenium Grid 3 on 6 VMs and it's a maintenance headache — node crashes, session leaks, version…
We have a handful of E2E tests that take 4–6 minutes each. They cover complex user journeys (onboarding flow,…
I need to validate API response structures in pytest tests. Three paths I see: 1. jsonschema — explicit, dict-based…
As our API test suite grows I'm realising ad-hoc test data in each test function is a maintenance nightmare. Three…
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…
Over the past few months I've been experimenting with Claude and GitHub Copilot for test case generation at work. Mixed…
We want to add test result notifications to our Slack channel after each CI run. Before I build this out I want to know…
We need to parallelise a 600-test pytest suite. Current serial runtime is ~22 minutes, target is under 8 minutes. I've…
Most people run headed during development and headless in CI. But I'm curious about the exceptions: - When do you run…
Playwright now supports component testing (React/Vue/Svelte) which blurs the line with E2E tests. In practice I'm…
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…