These are Playwright end-to-end tests, intended to aid regression testing by verifying basic user workflows.
- Node.js (version 16 or higher recommended)
- npm (or yarn) package manager
Inside this folder, install the Javascript dependencies for the Playwright tests
npm install
Then install Playwright browser binaries
npx playwright install
These tests run on headless Chromium binaries. To use additional browsers, you can uncomment the relevant sections of ./playwright.config.js.
Run all tests with:
npx playwright test
Run the tests in headed mode (see the browser window during tests):
npx playwright test --headed
After testing, you can view the test report in a browser by running:
npx playwright show-report