From 302586792f083e2fe4204f7cee6e686fa452f750 Mon Sep 17 00:00:00 2001 From: Vadim Stepanov Date: Thu, 9 Mar 2023 17:09:02 +0000 Subject: [PATCH] Update dev/README.md (#1516) # What this PR does Fix `cp` command usage in `dev/README.md` + add `npx playwright install` step to integration tests instruction --- dev/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev/README.md b/dev/README.md index 211307a9..3848dfbc 100644 --- a/dev/README.md +++ b/dev/README.md @@ -147,7 +147,8 @@ are run on pull request CI builds. New features should ideally include a new/mod To run these tests locally simply do the following: ```bash -cp ./grafana-plugin/.env.example cp ./grafana-plugin/.env +npx playwright install # install playwright dependencies +cp ./grafana-plugin/.env.example ./grafana-plugin/.env # you may need to tweak the values in ./grafana-plugin/.env according to your local setup yarn test:integration ```