From fb7e6e8276b242e4425eef614e52a7b70ae89498 Mon Sep 17 00:00:00 2001 From: Daniel Lockyer Date: Tue, 22 Feb 2022 10:19:51 +0100 Subject: [PATCH] Added note about installing the E2E browsers refs https://github.com/TryGhost/Toolbox/issues/207 - we need to suggest to install the supported browsers so Playwright can run tests against them --- test/e2e-browser/README.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 test/e2e-browser/README.md diff --git a/test/e2e-browser/README.md b/test/e2e-browser/README.md new file mode 100644 index 0000000000..f5b54fc559 --- /dev/null +++ b/test/e2e-browser/README.md @@ -0,0 +1,9 @@ +## Browser testing + +#### Install + +As per the [docs](https://playwright.dev/docs/intro#manually), run the following to install the supported browsers for Playwright: + +``` +npx playwright install +```