From e91da554ef7c6551527ddebfa703d8f4aaa3525b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20Herrmannsd=C3=B6rfer?= <37550860+jonasherr@users.noreply.github.com> Date: Sun, 27 Aug 2023 09:14:46 +0200 Subject: [PATCH] Update testing.mdx with playwright --- app/pages/docs/testing.mdx | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/app/pages/docs/testing.mdx b/app/pages/docs/testing.mdx index 8e0f188b..aed74e0e 100644 --- a/app/pages/docs/testing.mdx +++ b/app/pages/docs/testing.mdx @@ -122,6 +122,13 @@ our It includes a simple factory pattern, a command for creating and logging in a user, and a few example tests. +## End-to-end testing with Playwright {#e2e-cypredd} + +[Playwright](https://playwright.dev/) is a E2E testing framework similar to Cypress. Which is able to run several tests in parallel. + +You can find an [example with a Playwright setup](https://github.com/blitz-js/blitz/tree/canary/examples/playwright). +This example encompasses automated test database configuration, preserved login states for tests, and a selection of illustrative test cases. +