Before trace viewer, debugging a CI failure meant adding console.log, pushing, waiting 8 minutes for CI, repeat.…
97 discussions
Before trace viewer, debugging a CI failure meant adding console.log, pushing, waiting 8 minutes for CI, repeat.…
I have a senior SDET interview at a product company (Series C, ~200 engineers) in 3 weeks. I've done 2 SDET interviews…
Our product has a few LLM-powered features (a summarisation tool, a smart search). I'm trying to figure out how to test…
Our engineering director wants 80% code coverage enforced in CI. I understand the intent but I'm worried about…
Every few months someone on our team brings up migrating to Playwright. We've evaluated it twice now and decided to…
We needed to mock 3 external APIs for our integration test suite. Tried three approaches over 6 months: WireMock -…
This is the most frustrating debugging scenario I encounter regularly. Test passes 100% locally, fails 30–80% in CI. My…
Our test suite: 1200 Playwright tests, currently runs serially in ~55 minutes. Target: under 10 minutes for the PR…
Starting a new performance testing initiative. Our stack: Node.js microservices, REST APIs, ~50k requests/day in…
After three rewrites, here's the conftest.py structure that finally works for our monorepo (4 services, ~800 tests):…
I have a FastAPI service with a well-maintained OpenAPI spec (auto-generated by FastAPI). I want to generate a…
We have 8 microservices. Testing strategy question: where do you draw the line between testing each service in…
I'm based in Southeast Asia and targeting remote SDET roles at US/European companies. The job market feels opaque.…
Our flake rate is ~4% per test in CI (down from 9% after a big cleanup push). With 800 tests that means ~32 flaky…
Theoretically we should test Chrome, Firefox, Safari, Edge. In practice: - Chrome is 65% of our user base - Safari is…
We're moving off Jenkins and evaluating GitHub Actions vs GitLab CI (we're already on GitLab for source control). For…
We want to add visual regression tests for our design system components (50+ components) and a few key pages. Tools…
I'm testing a FastAPI application with pytest-asyncio and httpx.AsyncClient and hitting a few rough edges. Issues I've…
My company is adding basic security testing requirements. Leadership wants SDETs to own it since we already own…
We have several user flows triggered by emails: registration confirmation, password reset, order confirmation. I need…