Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .env.sample
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,5 @@ LOG_BROWSER_CONSOLE= # Enable log of the browser console (set to 1 to ena
LOG_NODE_CONSOLE= # Enable log of the node console (set to 1 to enable), needs PRINT_ONGOING_TEST_LOGS
SESSION_DEBUG= # Enable debug mode on session-desktop (set to 1 to enable), needs PRINT_ONGOING_TEST_LOGS
# DEBUG="pw:*" # warning: this is very verbose and needs `PRINT_ONGOING_TEST_LOGS=1` set too
NO_TUI= # Disable TUI reporter (set to 1 to disable)
USE_XVFB= # Use Xvfb to run tests on headless systems (set to 1 to enable, only linux)
2 changes: 1 addition & 1 deletion .github/workflows/pull.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,4 +86,4 @@ jobs:

- name: Run the only test we can without a browser
shell: bash
run: PRINT_FAILED_TEST_LOGS=1 pnpm playwright test -g "Enforce localized strings return expected values"
run: PRINT_FAILED_TEST_LOGS=1 pnpm playwright test -g "Enforce localized strings"
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,6 @@ dist/
*-difference.png
*-current*.png
*-diff*.png
**/.DS_Store

temp-*.jpeg
3 changes: 0 additions & 3 deletions __screenshots__/Change-avatar/avatar-updated-blue-darwin.jpeg

This file was deleted.

9 changes: 8 additions & 1 deletion playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,14 @@ dotenv.config({ quiet: true });
export default defineConfig({
timeout: 350000,
globalTimeout: 6000000,
reporter: [['./sessionReporter.ts'], ['allure-playwright']],
reporter: [
[
process.stdout.isTTY && process.env.NO_TUI !== '1'
? './tuiReporter.ts'
: './sessionReporter.ts',
],
// ['allure-playwright'], // enabling starts generating reports to the allure-results folder
],
testDir: './tests/automation',
testIgnore: '*.js',
outputDir: './tests/automation/test-results',
Expand Down
3 changes: 0 additions & 3 deletions screenshots/Add avatar/avatar-updated-blue-darwin.jpeg

This file was deleted.

3 changes: 0 additions & 3 deletions screenshots/Add avatar/avatar-updated-blue-linux.jpeg

This file was deleted.

3 changes: 3 additions & 0 deletions screenshots/Add-avatar/avatar-updated-blue-darwin.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions screenshots/Add-avatar/avatar-updated-blue-linux.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions screenshots/Avatar-syncs/avatar-updated-blue-darwin.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions screenshots/Avatar-syncs/avatar-updated-blue-linux.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading