From 3c39491f31d07724f74adaf01626ffed41fb02cd Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Mon, 27 Sep 2021 13:59:15 +0200 Subject: [PATCH] docs: added Playwright to testing guide --- src/v2/guide/testing.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/v2/guide/testing.md b/src/v2/guide/testing.md index 1249ed0471..8aecf46115 100644 --- a/src/v2/guide/testing.md +++ b/src/v2/guide/testing.md @@ -142,6 +142,15 @@ Cypress.io is a testing framework that aims to enhance developer productivity by - [Official Vue CLI Cypress Plugin](https://cli.vuejs.org/core-plugins/e2e-cypress.html) - [Cypress Testing Library](https://github.com/testing-library/cypress-testing-library) +#### Playwright + +Playwright is a testing framework that enables reliable end-to-end and integration testing for modern web apps. This makes it possible to run your tests in Chromium, Firefox, and WebKit across all the platforms headless and headed. + +**Resources** + +- [Playwright's Official Website](https://playwright.dev) +- [GitHub repository](https://github.com/microsoft/playwright) + #### Nightwatch.js Nightwatch.js is an end-to-end testing framework that can be used to test web applications and websites, as well as Node.js unit and integration testing.