Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sotayamashita/playground-cucumber-playwright
https://github.com/sotayamashita/playground-cucumber-playwright
cucumber-playwright playground
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/sotayamashita/playground-cucumber-playwright
- Owner: sotayamashita
- Created: 2024-04-25T11:14:06.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-04-25T12:31:07.000Z (9 months ago)
- Last Synced: 2024-10-09T13:42:39.126Z (3 months ago)
- Topics: cucumber-playwright, playground
- Language: TypeScript
- Homepage:
- Size: 290 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Cucumber + Playwright
## Setup
```bash
git clone [email protected]:sotayamashita/playground-cucumber-playwright.git
cd playground-cucumber-playwrightpnpm install
```## Running tests
### Runing tests by cucumber
It will generate an HTML report under `cucumber-report/` after executing the command below:
```bash
pnpm run test:cucumber
```### Running tests by playwright
It will generate an HTML report under `playwright-report/` after executing the command below:
```bash
pnpm run test:playwright
```## Acknowledgement
- [Tallyb/cucumber-playwright](https://github.com/Tallyb/cucumber-playwright)
- [serenity-js/serenity-js-cucumber-playwright-template](https://github.com/serenity-js/serenity-js-cucumber-playwright-template)