forked from SAP/spartacus
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CXSPA-7325: Add scenarios which could not run on pipeline set into WT…
…F D3 run (SAP#18880) Co-authored-by: Grace Dong <127385561+i53577@users.noreply.github.com>
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#!/bin/bash | ||
|
||
# uncomment below for local testing | ||
# export ENDPOINT_URL_PUBLIC_SPARTACUS=https://spartacusstore.cg79x9wuu9-eccommerc1-d3-public.model-t.myhybris.cloud | ||
# export ENDPOINT_URL_PUBLIC_API=https://api.cg79x9wuu9-eccommerc1-d3-public.model-t.myhybris.cloud | ||
|
||
CYPRESS_ROOT_FOLDER="cypress/e2e" | ||
CYPRESS_OTP_FOLDER="$CYPRESS_ROOT_FOLDER/regression/user_access" | ||
CYPRESS_MYACCOUNT_V2_FOLDER="$CYPRESS_ROOT_FOLDER/regression/my-account" | ||
CYPRESS_ACCESSIBILITY_FOLDER="$CYPRESS_ROOT_FOLDER/accessibility" | ||
|
||
export CX_MY_ACCOUNT_V2=true | ||
export E2ES_TO_RUN="$CYPRESS_OTP_FOLDER/otp-login.e2e-flaky.cy.ts" | ||
|
||
# install cypress standlone dependencies | ||
(cd projects/storefrontapp-e2e-cypress && npm install) | ||
|
||
# run spartacus ccv2 e2es for b2c | ||
npm run e2e:run:ci:ccv2 | ||
|
||
|