Skip to content
This repository has been archived by the owner on Jul 2, 2024. It is now read-only.

DEVPROD-3425: Update cypress_spec param default value #2211

Merged
merged 2 commits into from
Jan 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .evergreen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ functions:
if [[ "${requester}" == "github_pr" || "${requester}" == "commit" ]]; then
yarn cy:run --record --key "${cypress_record_key}" --reporter junit
elif [[ "${requester}" == "patch" ]]; then
yarn cy:run --record --key "${cypress_record_key}" --reporter junit --spec ${cypress_spec}
yarn cy:run --record --key "${cypress_record_key}" --reporter junit --spec "${cypress_spec}"
else
yarn cy:run --reporter junit
fi
Expand Down Expand Up @@ -524,5 +524,5 @@ buildvariants:

parameters:
- key: cypress_spec
value: "cypress/integration/**/*"
value: cypress/integration/**/*
description: Specify the Cypress spec files to run for user submitted patches running the e2e_test task.