Skip to content

Commit

Permalink
Update Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
ksuess committed Apr 10, 2024
1 parent d544a52 commit 7181cca
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -113,12 +113,12 @@ start-acceptance: ## Start acceptance server-containers

.PHONY: test-acceptance
test-acceptance: ## Start Cypress
(cd acceptance && ./node_modules/.bin/cypress open --config-file tests/cypress.config.js)
(cd acceptance && ./node_modules/.bin/cypress open)

.PHONY: test-acceptance-headless
# test-acceptance-headless: install-acceptance ## Run cypress tests in CI
test-acceptance-headless: ## Run cypress tests in CI
(cd acceptance && ./node_modules/.bin/cypress run --config-file tests/cypress.config.js)
(cd acceptance && ./node_modules/.bin/cypress run)

.PHONY: stop-test-acceptance-server
stop-test-acceptance-server: ## Stop acceptance server
Expand All @@ -143,9 +143,9 @@ start-acceptance-multilingual: ## multilingual – Start acceptance server-conta

.PHONY: test-acceptance
test-acceptance-multilingual: ## Start Cypress
(cd acceptance && ./node_modules/.bin/cypress open --config-file tests/cypress.multilingual.config.js)
(cd acceptance && ./node_modules/.bin/cypress open --config-file cypress.multilingual.config.js)

.PHONY: test-acceptance-headless
# test-acceptance-headless: install-acceptance ## Run cypress tests in CI
test-acceptance-headless-multilingual: ## Run cypress tests in CI
(cd acceptance && ./node_modules/.bin/cypress run --config-file tests/cypress.multilingual.config.js)
(cd acceptance && ./node_modules/.bin/cypress run --config-file cypress.multilingual.config.js)

0 comments on commit 7181cca

Please sign in to comment.