From 38b0b5af76126e0a87e1e91622ae299a227ac458 Mon Sep 17 00:00:00 2001 From: Victor Fernandez de Alba Date: Tue, 4 Jun 2024 10:08:18 +0200 Subject: [PATCH] Update specs pattern for main --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index b09d3225..ed9c3ab9 100644 --- a/Makefile +++ b/Makefile @@ -118,11 +118,11 @@ ci-acceptance-backend-start: ## Start backend acceptance server in headless mode .PHONY: acceptance-test acceptance-test: ## Start Cypress in interactive mode - pnpm --filter @plone/volto exec cypress open --config-file $(CURRENT_DIR)/cypress.config.js --config specPattern=$(CURRENT_DIR)'/cypress/tests/**/*.{js,jsx,ts,tsx}' + pnpm --filter @plone/volto exec cypress open --config-file $(CURRENT_DIR)/cypress.config.js --config specPattern=$(CURRENT_DIR)'/cypress/tests/main/**/*.{js,jsx,ts,tsx}' .PHONY: ci-acceptance-test ci-acceptance-test: ## Run cypress tests in headless mode for CI - pnpm --filter @plone/volto exec cypress run --config-file $(CURRENT_DIR)/cypress.config.js --config specPattern=$(CURRENT_DIR)'/cypress/tests/**/*.{js,jsx,ts,tsx}' + pnpm --filter @plone/volto exec cypress run --config-file $(CURRENT_DIR)/cypress.config.js --config specPattern=$(CURRENT_DIR)'/cypress/tests/main/**/*.{js,jsx,ts,tsx}' # a11y tests .PHONY: acceptance-a11y-frontend-prod-start