Skip to content

Commit

Permalink
Fix failing UI test
Browse files Browse the repository at this point in the history
  • Loading branch information
donat committed Apr 5, 2022
1 parent 7657870 commit ce39adf
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,11 @@ class ExecutionViewDoubleClickTest extends BaseExecutionViewTest {
runNode.expand()
SWTBotTreeItem testNode = runNode.getNode(':test')
testNode.expand()
SWTBotTreeItem fileNode = testNode.getNode('LibraryTest')
SWTBotTreeItem testNode2 = testNode.getNode('Executing task \':test\'')
testNode2.expand()
SWTBotTreeItem testNode3 = testNode2.getNode('Execute executeTests for :test')
testNode3.expand()
SWTBotTreeItem fileNode = testNode3.getNode('LibraryTest')

then:
bot.editors().size == 0
Expand Down

0 comments on commit ce39adf

Please sign in to comment.