Skip to content

Commit

Permalink
add changelog entry
Browse files Browse the repository at this point in the history
  • Loading branch information
Timur Karimov committed Dec 14, 2023
1 parent a23d88e commit 204ad93
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
4 changes: 4 additions & 0 deletions changelog/cleanup-redundant-script-enqueueing
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
13 changes: 13 additions & 0 deletions e2e-runner.sh
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."

0 comments on commit 204ad93

Please sign in to comment.