-
Notifications
You must be signed in to change notification settings - Fork 265
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: fix flakey e2e fees failures test (#8807)
If the proven chain weren't caught up before we took the measurement for coinbase's L1 balance, it could look as though the wrong amount of fees were paid out.
- Loading branch information
1 parent
168cbdf
commit 99bac95
Showing
4 changed files
with
30 additions
and
8 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
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,14 @@ | ||
#!/bin/bash | ||
|
||
testname=$1 | ||
script_dir=$(dirname "$0") | ||
|
||
for i in {1..100} | ||
do | ||
echo "Run #$i" | ||
if ! yarn test $1 > $script_dir/deflaker.log 2>&1; then | ||
echo "failed" | ||
exit 1 | ||
fi | ||
done | ||
echo "success" |
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