diff --git a/Makefile b/Makefile index c73777e6..0dfc8e4a 100644 --- a/Makefile +++ b/Makefile @@ -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 @@ -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)