-
Notifications
You must be signed in to change notification settings - Fork 212
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2460 from Adyen/develop-8
Release 8.22.7
- Loading branch information
Showing
9 changed files
with
102 additions
and
48 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,15 +1,28 @@ | ||
#!/bin/bash | ||
set -euo pipefail | ||
|
||
# Checkout E2E tests | ||
cd /tmp; | ||
git clone https://github.com/Adyen/adyen-integration-tools-tests.git; | ||
cd adyen-integration-tools-tests; | ||
git checkout $INTEGRATION_TESTS_BRANCH; | ||
# Base configuration and installation | ||
set -euo pipefail | ||
cd /tmp | ||
git clone https://github.com/Adyen/adyen-integration-tools-tests.git | ||
cd adyen-integration-tools-tests | ||
git checkout $INTEGRATION_TESTS_BRANCH | ||
rm -rf package-lock.json | ||
npm i | ||
|
||
# Setup environment | ||
rm -rf package-lock.json; | ||
npm i; | ||
option="$1" | ||
|
||
# Run tests | ||
npm run test:ci:magento | ||
# Run the desired group of tests | ||
case $option in | ||
"standard") | ||
echo "Running Standard Set of E2E Tests." | ||
npm run test:ci:magento | ||
;; | ||
"express-checkout") | ||
echo "Running Express Checkout E2E Tests." | ||
npm run test:ci:magento:express-checkout | ||
;; | ||
"all") | ||
echo "Running All Magento E2E Tests" | ||
npm run test:ci:magento:all | ||
;; | ||
esac |
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
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
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
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
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
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
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