datatracker/playwright
Jennifer Richards 0ad293d6e9
feat: add slides / session materials links to session details modal ()
* feat: add propose/upload slides button to session details modal

* refactor: remove unneeded chaining operator

* test: fix quotes around template string

* feat: link to meeting materials page from AgendaDetailsModal

* refactor: compute session details URL in JS instead of view

* chore: restyle materials page link

* test: fix test case to match changes to session modal
2022-10-12 16:07:23 -05:00
..
data test: Use Playwright + agenda start/end dates fix () 2022-09-20 13:33:22 -05:00
helpers test: Use Playwright + agenda start/end dates fix () 2022-09-20 13:33:22 -05:00
tests/meeting feat: add slides / session materials links to session details modal () 2022-10-12 16:07:23 -05:00
.editorconfig test: Use Playwright + agenda start/end dates fix () 2022-09-20 13:33:22 -05:00
.eslintrc.js test: Use Playwright + agenda start/end dates fix () 2022-09-20 13:33:22 -05:00
.gitignore test: Use Playwright + agenda start/end dates fix () 2022-09-20 13:33:22 -05:00
package-lock.json test: Use Playwright + agenda start/end dates fix () 2022-09-20 13:33:22 -05:00
package.json test: Use Playwright + agenda start/end dates fix () 2022-09-20 13:33:22 -05:00
playwright.config.js test: Use Playwright + agenda start/end dates fix () 2022-09-20 13:33:22 -05:00
README.md test: Use Playwright + agenda start/end dates fix () 2022-09-20 13:33:22 -05:00

Playwright

Frontend testing automation tool

Install

Make sure you run all commands from the /playwright directory, not the project root.

npm install
npx playwright install --with-deps

Usage

Running all tests headless:

npm test

Running all tests serially in visual mode (headed):

npm run test:visual

Running all tests in debug mode:

npm run test:debug

Advanced Usage

Refer to the CLI Reference for all possible options.

Running a single test file:

npx playwright test foo.spec.ts

Running test files that have foo or bar in the filename:

npx playwright test foo bar

Running tests in a specific browser (e.g. chromium):

npx playwright test --project=chromium

Running tests in headed mode:

npx playwright test --headed