From 9de4ffcf3d4a6c64327606a842081bdf1e4cff04 Mon Sep 17 00:00:00 2001 From: Julien Loizelet Date: Thu, 3 Aug 2023 13:51:33 +0900 Subject: [PATCH] fix(commands): Add descriptions to commands --- CHANGELOG.md | 10 ++++++++++ commands/playwright/playwright | 3 +++ commands/playwright/playwright-install | 3 +++ 3 files changed, 16 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8fd8e81..389ffaf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,16 @@ The public API for this project is defined by the files `docker-compose.playwrig ------ +## [2.1.1](https://github.com/julienloizelet/ddev-playwright/releases/tag/v2.1.1) - 2023-08-03 +[_Compare with previous release_](https://github.com/julienloizelet/ddev-playwright/compare/v2.1.0...v2.1.1) + + +### Fixed + +- Add descriptions to `playwright` and `playwright-install` commands + +--- + ## [2.1.0](https://github.com/julienloizelet/ddev-playwright/releases/tag/v2.1.0) - 2023-08-02 [_Compare with previous release_](https://github.com/julienloizelet/ddev-playwright/compare/v2.0.1...v2.1.0) diff --git a/commands/playwright/playwright b/commands/playwright/playwright index b2e9dcc..b4f6254 100644 --- a/commands/playwright/playwright +++ b/commands/playwright/playwright @@ -5,6 +5,9 @@ # # This file comes from https://github.com/julienloizelet/ddev-playwright # +## Description: Run playwright command +## Usage: playwright [options] [command] +## Example: "ddev playwright test" cd /var/www/html || exit 1 cd "${PLAYWRIGHT_TEST_DIR}" || exit 1 diff --git a/commands/playwright/playwright-install b/commands/playwright/playwright-install index b4165b9..61bbc15 100644 --- a/commands/playwright/playwright-install +++ b/commands/playwright/playwright-install @@ -5,6 +5,9 @@ # # This file comes from https://github.com/julienloizelet/ddev-playwright # +## Description: Install playwright in PLAYWRIGHT_TEST_DIR +## Usage: playwright-install +## Example: "ddev playwright-install" cd /var/www/html || exit 1 cd "${PLAYWRIGHT_TEST_DIR}" || exit 1