Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Use test library 0.0.9 #593

Merged
merged 2 commits into from
Jun 5, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ dependencies {
//required by lsp4j as the version from IJ is incompatible
compile 'com.google.code.gson:gson:2.8.9'
compile 'com.vladsch.flexmark:flexmark:0.50.50'
testCompile 'com.redhat.devtools.intellij:intellij-common-ui-test-library:0.0.8'
testCompile 'com.redhat.devtools.intellij:intellij-common-ui-test-library:0.0.9'
lsp('org.eclipse.lsp4mp:org.eclipse.lsp4mp.ls:0.4.0:uber') {
transitive = false
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@ private void createQuarkusProject(RemoteRobot remoteRobot, String projectName, E

IdeStatusBar ideStatusBar = remoteRobot.find(IdeStatusBar.class, Duration.ofSeconds(10));
ideStatusBar.waitUntilProjectImportIsComplete();
TipDialog.closeTipDialogIfItAppears(remoteRobot);
MainIdeWindow mainIdeWindow = remoteRobot.find(MainIdeWindow.class, Duration.ofSeconds(5));
mainIdeWindow.maximizeIdeWindow();
ideStatusBar.waitUntilAllBgTasksFinish();
Expand Down Expand Up @@ -140,7 +139,6 @@ private String createJavaProjectWithQuarkus(RemoteRobot remoteRobot, String proj

IdeStatusBar ideStatusBar = remoteRobot.find(IdeStatusBar.class, Duration.ofSeconds(10));
ideStatusBar.waitUntilProjectImportIsComplete();
TipDialog.closeTipDialogIfItAppears(remoteRobot);
MainIdeWindow mainIdeWindow = remoteRobot.find(MainIdeWindow.class, Duration.ofSeconds(5));
mainIdeWindow.maximizeIdeWindow();
ideStatusBar.waitUntilAllBgTasksFinish();
Expand Down