Skip to content

Commit

Permalink
#86: Fix broken test
Browse files Browse the repository at this point in the history
  • Loading branch information
kamil-sita committed Jul 28, 2024
1 parent 0e31381 commit 04cc114
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,12 @@ public void shouldValidateTagTranslation(FxRobot robot) {
.expect(toBeTrueAfterAction(() -> unstableSceneReporter.isStable()))
.test();

try { // todo fix test randomly failing
Thread.sleep(1000);
} catch (InterruptedException e) {
throw new RuntimeException(e);
}

// perform tag translation
withAction(() -> {
robot.clickOn(TagTranslationActions.tagLevelRulesTextArea());
Expand Down

0 comments on commit 04cc114

Please sign in to comment.