Tests: Run acceptance tests in chrome instead of chromium
This commit is contained in:
parent
bce509c88b
commit
ef552d081f
1 changed files with 4 additions and 4 deletions
8
Makefile
8
Makefile
|
@ -213,19 +213,19 @@ test-js:
|
||||||
(cd frontend && env NODE_ENV=development BABEL_ENV=test npm run test)
|
(cd frontend && env NODE_ENV=development BABEL_ENV=test npm run test)
|
||||||
acceptance:
|
acceptance:
|
||||||
$(info Running public-mode tests in 'chromium:headless'...)
|
$(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")
|
(cd frontend && npm run testcafe -- chrome:headless --test-grep "^(Common|Core)\:*" --test-meta mode=public --config-file ./testcaferc.json "tests/acceptance")
|
||||||
acceptance-short:
|
acceptance-short:
|
||||||
$(info Running JS acceptance tests in Chrome...)
|
$(info Running JS acceptance tests in Chrome...)
|
||||||
(cd frontend && npm run testcafe -- chromium:headless --test-grep "^(Common|Core)\:*" --test-meta mode=public,type=short --config-file ./testcaferc.json "tests/acceptance")
|
(cd frontend && npm run testcafe -- chrome:headless --test-grep "^(Common|Core)\:*" --test-meta mode=public,type=short --config-file ./testcaferc.json "tests/acceptance")
|
||||||
acceptance-firefox:
|
acceptance-firefox:
|
||||||
$(info Running JS acceptance tests in Firefox...)
|
$(info Running JS acceptance tests in Firefox...)
|
||||||
(cd frontend && npm run testcafe -- firefox:headless --test-grep "^(Common|Core)\:*" --test-meta mode=public --config-file ./testcaferc.json "tests/acceptance")
|
(cd frontend && npm run testcafe -- firefox:headless --test-grep "^(Common|Core)\:*" --test-meta mode=public --config-file ./testcaferc.json "tests/acceptance")
|
||||||
acceptance-auth:
|
acceptance-auth:
|
||||||
$(info Running JS acceptance-auth tests in Chrome...)
|
$(info Running JS acceptance-auth tests in Chrome...)
|
||||||
(cd frontend && npm run testcafe -- chromium:headless --test-grep "^(Common|Core)\:*" --test-meta mode=auth --config-file ./testcaferc.json "tests/acceptance")
|
(cd frontend && npm run testcafe -- chrome:headless --test-grep "^(Common|Core)\:*" --test-meta mode=auth --config-file ./testcaferc.json "tests/acceptance")
|
||||||
acceptance-auth-short:
|
acceptance-auth-short:
|
||||||
$(info Running JS acceptance-auth tests in Chrome...)
|
$(info Running JS acceptance-auth tests in Chrome...)
|
||||||
(cd frontend && npm run testcafe -- chromium:headless --test-grep "^(Common|Core)\:*" --test-meta mode=auth,type=short --config-file ./testcaferc.json "tests/acceptance")
|
(cd frontend && npm run testcafe -- chrome:headless --test-grep "^(Common|Core)\:*" --test-meta mode=auth,type=short --config-file ./testcaferc.json "tests/acceptance")
|
||||||
acceptance-auth-firefox:
|
acceptance-auth-firefox:
|
||||||
$(info Running JS acceptance-auth tests in Firefox...)
|
$(info Running JS acceptance-auth tests in Firefox...)
|
||||||
(cd frontend && npm run testcafe -- firefox:headless --test-grep "^(Common|Core)\:*" --test-meta mode=auth --config-file ./testcaferc.json "tests/acceptance")
|
(cd frontend && npm run testcafe -- firefox:headless --test-grep "^(Common|Core)\:*" --test-meta mode=auth --config-file ./testcaferc.json "tests/acceptance")
|
||||||
|
|
Loading…
Reference in a new issue