This file contains hidden or 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
| <?php | |
| class AcceptanceTester extends \Codeception\Actor | |
| { | |
| use _generated\AcceptanceTesterActions; | |
| public function retryOnFailure(callable $callback, int $times = 3) | |
| { | |
| while ($times > 0) { | |
| try { | |
| $callback($this); |
This file contains hidden or 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
| node { | |
| wrap([$class: 'AnsiColorBuildWrapper', 'colorMapName': 'XTerm', 'defaultFg': 1, 'defaultBg': 2]) { | |
| wrap([$class: 'TimestamperBuildWrapper']) { | |
| ... steps... and other stuff | |
| } | |
| } | |
| } |
OlderNewer