10/ When you build your test setup the right way from day one, youβre much less likely to lose trust in it later.
Your future self (and your team) will thank you.
@endform.dev.bsky.social
Run your Playwright tests faster with https://endform.dev
10/ When you build your test setup the right way from day one, youβre much less likely to lose trust in it later.
Your future self (and your team) will thank you.
9/ In short:
β
Start with stable foundations
β
Invest in API-level setup early
β
Use fixtures, page objects, and shared abstractions
Your test suite should speed you up, not slow you down.
8/ Page objects & explicit concurrency control
Define structured interactions (buying a product, making an order) in a page object.
Use Promise.all to wait for both actions + requests so your test doesnβt break due to timing nuances.
7/ Use shared fixtures. If external dependencies fail (e.g. a third-party API), it should be handled at the fixture level β not in every single test.
30.09.2025 11:20 β π 0 π 0 π¬ 1 π 06/ This approach lets your tests focus on behavior, not scaffolding. It leads to faster suites, easier maintainability, and more confidence.
30.09.2025 11:20 β π 0 π 0 π¬ 1 π 05/ The alternative: API-driven test data
Create your users, subscriptions, and test state via API instead of the UI. Use fixtures to inject that data into Playwright.
4/ The core problem: too much setup in the UI.
If half your suite is just logging in, preparing users, etc., youβre doing it wrong.
3/ Signs your Playwright setup is failing
β’ Flaky tests due to shared state or data interference
β’ Failures on retries because of leftover state
β’ Tests wasting time on repetitive UI setup
β’ Symptoms reappearing unexpectedly
2/ π Full post: endform.dev/blog/why-mos...
30.09.2025 11:20 β π 0 π 0 π¬ 1 π 01/ End-to-end tests are supposed to give you confidence.
Instead, many Playwright setups create⦠chaos.
Hereβs why (and what to do instead) π§΅
Endform is launching on Product Hunt!
Endform is the platform for Playwright E2E tests. Endform runs your tests faster and gives you insights into badly behaving tests.
Come check it out!
www.producthunt.com/products/end...
So you got your unit tests running in a few dozen ms, but your CI/CD pipeline is still slow. What now?
endform.dev/blog/pipelin...
Curious how we made Endform so fast? Here's our technical deep dive
endform.dev/blog/the-fas...
Hello world!
endform.dev/blog/introdu...