added testing with puppeteer

This commit is contained in:
Martin West
2025-05-29 17:18:30 +01:00
parent 97b5c1af5e
commit 40da9191fe
7 changed files with 1222 additions and 1 deletions

8
tests/e2e/README.md Normal file
View File

@@ -0,0 +1,8 @@
# End-to-End (E2E) Tests
This directory holds all end-to-end tests written using Puppeteer. These tests simulate real user scenarios by interacting with the application's UI in a browser.
Subdirectories:
- `specs/`: Contains the actual test script files (test specifications).
- `page-objects/`: Implements the Page Object Model (POM) for better test structure and maintainability.
- `utils/`: Contains helper functions and utilities for the E2E tests, such as browser setup.