Tests: Add TestCafe acceptance test runner example
Signed-off-by: Michael Mayer <michael@photoprism.app>
This commit is contained in:
parent
fb921a4932
commit
7814273ac2
3 changed files with 12 additions and 2 deletions
11
Makefile
11
Makefile
|
@ -43,6 +43,9 @@ test-pkg: reset-sqlite run-test-pkg
|
|||
test-api: reset-sqlite run-test-api
|
||||
test-short: reset-sqlite run-test-short
|
||||
test-mariadb: reset-acceptance run-test-mariadb
|
||||
testcafe: testcafe-auth-chromium
|
||||
testcafe-auth-chromium: storage/acceptance acceptance-sqlite-restart run-testcafe-auth-chromium acceptance-sqlite-stop
|
||||
testcafe-public-chromium: storage/acceptance acceptance-sqlite-restart run-testcafe-public-chromium acceptance-sqlite-stop
|
||||
acceptance-auth-run-chromium: storage/acceptance acceptance-auth-sqlite-restart acceptance-auth acceptance-auth-sqlite-stop
|
||||
acceptance-public-run-chromium: storage/acceptance acceptance-sqlite-restart acceptance acceptance-sqlite-stop
|
||||
acceptance-auth-run-firefox: storage/acceptance acceptance-auth-sqlite-restart acceptance-auth-firefox acceptance-auth-sqlite-stop
|
||||
|
@ -204,6 +207,12 @@ test-js:
|
|||
acceptance-old:
|
||||
$(info Running JS acceptance tests in Chrome...)
|
||||
(cd frontend && npm run acceptance --first="chromium:headless" --second=plus --third=public && cd ..)
|
||||
run-testcafe-auth-chromium:
|
||||
$(info Running auth-mode tests in 'chromium:headless'...)
|
||||
(cd frontend && npm run testcafe -- chromium:headless --test-grep "^(Common|Core)\:*" --test-meta mode=auth --config-file ./testcaferc.json "tests/acceptance")
|
||||
run-testcafe-public-chromium:
|
||||
$(info Running public-mode tests in 'chromium:headless'...)
|
||||
(cd frontend && npm run testcafe -- chromium:headless --test-grep "^(Common|Core)\:*" --test-meta mode=public --config-file ./testcaferc.json "tests/acceptance")
|
||||
acceptance:
|
||||
$(info Running JS acceptance tests in Chrome...)
|
||||
(cd frontend && npm run acceptance --first="chromium:headless" --second="^(Common|Core)\:*" --third=public --fourth="tests/acceptance" && cd ..)
|
||||
|
@ -491,4 +500,4 @@ tidy:
|
|||
install-go install-darktable install-tensorflow devtools tar.gz fix-permissions rootshell help dep-acceptance \
|
||||
docker-local docker-local-all docker-local-bookworm docker-local-bullseye docker-local-buster docker-local-impish \
|
||||
docker-local-develop docker-local-develop-all docker-local-develop-bookworm docker-local-develop-bullseye \
|
||||
docker-local-develop-buster docker-local-develop-impish test-mariadb reset-acceptance run-test-mariadb;
|
||||
docker-local-develop-buster docker-local-develop-impish test-mariadb reset-acceptance run-test-mariadb testcafe;
|
||||
|
|
|
@ -13,6 +13,7 @@
|
|||
"fmt": "eslint --cache --fix src/ *.js .eslintrc.js",
|
||||
"test": "karma start",
|
||||
"upgrade": "npm --depth 10 update && npm audit fix",
|
||||
"testcafe": "testcafe",
|
||||
"acceptance": "testcafe $npm_config_first --test-grep $npm_config_second --test-meta mode=$npm_config_third --config-file ./testcaferc.json $npm_config_fourth",
|
||||
"acceptance-short": "testcafe $npm_config_first --test-grep $npm_config_second --test-meta mode=$npm_config_third,type=short --config-file ./testcaferc.json $npm_config_fourth",
|
||||
"acceptance-local": "testcafe chromium --selector-timeout 5000 -S -s tests/acceptance/screenshots tests/acceptance",
|
||||
|
|
|
@ -10,7 +10,7 @@ const toolbar = new Toolbar();
|
|||
const menu = new Menu();
|
||||
const page = new Page();
|
||||
|
||||
test.meta("testID", "components-001").only.meta({ mode: "private" })(
|
||||
test.meta("testID", "components-001").meta({ mode: "private" })(
|
||||
"Common: Mobile Toolbar",
|
||||
async (t) => {
|
||||
if (t.browser.platform === "mobile") {
|
||||
|
|
Loading…
Reference in a new issue