-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Timur Karimov
committed
Dec 14, 2023
1 parent
a23d88e
commit 204ad93
Showing
2 changed files
with
17 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,4 @@ | ||
Significance: minor | ||
Type: dev | ||
|
||
Cleanup enqueueing of the scripts which were removed |
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,13 @@ | ||
#!/bin/bash | ||
|
||
counter=0 | ||
|
||
for i in {1..1}; do | ||
output=$(npm run test:e2e tests/e2e/specs/upe-split/shopper/shopper-deferred-intent-creation-upe-enabled.spec.js) | ||
|
||
if [[ $output == *"10 passed, 10 total"* ]]; then | ||
((counter++)) | ||
fi | ||
done | ||
|
||
echo "From 10 runs, there are ${counter} successful." |