Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
1202f43
add poc playwright
dan-ichim-lgp Jun 3, 2026
8e8245c
add spec
dan-ichim-lgp Jun 3, 2026
d85581e
add parallel
dan-ichim-lgp Jun 4, 2026
44d2249
update readme
dan-ichim-lgp Jun 4, 2026
499bd52
revert ilib
dan-ichim-lgp Jun 4, 2026
43c4504
update readme
dan-ichim-lgp Jun 5, 2026
e484cb7
fix lint
dan-ichim-lgp Jun 5, 2026
8ba5d1b
fix timeout
dan-ichim-lgp Jun 8, 2026
a1af9c3
add review changes
dan-ichim-lgp Jun 9, 2026
98d1b86
update review changes
dan-ichim-lgp Jun 10, 2026
2fe2f12
fix lint
dan-ichim-lgp Jun 10, 2026
e672ff0
automate run to create dist folder
dan-ichim-lgp Jun 10, 2026
7d2a19a
merge run and parse in one file
dan-ichim-lgp Jun 11, 2026
290d8dd
fix lint
dan-ichim-lgp Jun 11, 2026
68580d1
jenkins test 1
dan-ichim-lgp Jun 12, 2026
dce3131
timeout tests
dan-ichim-lgp Jun 12, 2026
09d9c0f
layout
dan-ichim-lgp Jun 12, 2026
0858c8b
fail tests
dan-ichim-lgp Jun 15, 2026
a69fabd
fail 1 test
dan-ichim-lgp Jun 15, 2026
c6370a6
update readme
dan-ichim-lgp Jun 15, 2026
6e2ad21
fix lint
dan-ichim-lgp Jun 15, 2026
b205abf
update readme
dan-ichim-lgp Jun 18, 2026
0fa559d
result tests playwright
dan-ichim-lgp Jun 19, 2026
fa790eb
media fix
dan-ichim-lgp Jun 19, 2026
1d3e012
Merge remote-tracking branch 'origin/develop' into feature/NXT-14655
daniel-stoian-lgp Jun 24, 2026
a911167
added thrshdold 0
daniel-stoian-lgp Jun 25, 2026
4530027
removed spellcheck
daniel-stoian-lgp Jun 25, 2026
d72b392
eslint fix
daniel-stoian-lgp Jun 25, 2026
3a90a93
fix for serial capture
daniel-stoian-lgp Jun 30, 2026
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
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,14 @@ errorShots
coverage
.eslintcache

# Screenshot tests (tests/screenshot/) — generated artifacts only
# Playwright baselines: snapshots/<Component>/<TestName>/*.png (same paths as WDIO reference/)
tests/screenshot/playwright/snapshots
tests/screenshot/playwright/test-results
tests/screenshot/playwright/reports
tests/screenshot/playwright/blob-report
tests/screenshot/playwright/.test-data.json
tests/screenshot/playwright/.shard-registry.jsonl

# Mac
.DS_Store
66 changes: 65 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 10 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,13 @@
"test-ss": "start-tests tests/screenshot/config/wdio.conf.js",
"test-ss-docker": "start-tests tests/screenshot/config/wdio.docker.conf.js",
"test-ss-tv": "start-tests tests/screenshot/config/wdio.tv.conf.js",
"test-playwright": "node tests/screenshot/scripts/run-playwright.mjs",
"test-playwright:update": "node tests/screenshot/scripts/run-playwright.mjs -- --update",
"test-playwright:report": "playwright show-report tests/screenshot/playwright/reports/html",
"test-playwright:component": "node tests/screenshot/scripts/run-playwright.mjs",
"test-ss:component": "node tests/screenshot/scripts/run-component-wdio.mjs",
"prepare-playwright": "playwright install chrome",
"benchmark-screenshots": "node tests/screenshot/playwright/benchmark.mjs",
"test-json": "enact test --json",
"test-watch": "enact test --watch",
"transpile": "enact transpile",
Expand Down Expand Up @@ -64,6 +71,7 @@
},
"devDependencies": {
"@enact/docs-utils": "^0.4.17",
"@enact/ui-test-utils": "^4.0.2"
"@enact/ui-test-utils": "^4.0.2",
"@playwright/test": "^1.57.0"
}
}
}
Loading
Loading