* fix: Show recordings for interims Add methods uses_notes(), has_recordings(), and uses_chat_logs() to the meeting object (with semantically correct tests) and use them consistently throughout. List the recordings if the "meeting numnber" starts with "interim" Fixes: #6543 * style: Use "is not" and "is" for None comparisons * None comparison and non-IETF meetings style: Use "is not None" instead of "!=" For non-IETF meetings assume chat logs exist * fix: Restore useNotes for JS fields * fix: uses_notes->useNotes (in JavaScript) Also add comment about meeting number field in tests * Missed a uses_notes->useNotes edit * fix: useNotes->usesNotes --------- Co-authored-by: Jennifer Richards <jennifer@staff.ietf.org> Co-authored-by: Robert Sparks <rjsparks@nostrum.com> |
||
---|---|---|
.. | ||
data | ||
helpers | ||
tests/meeting | ||
tests-legacy/nomcom | ||
.editorconfig | ||
.eslintrc.js | ||
.gitignore | ||
.npmrc | ||
package-lock.json | ||
package.json | ||
playwright-legacy.config.js | ||
playwright.config.js | ||
README.md |
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