Skip to content

Commit 487e71a

Browse files
committed
chore: fix integration tests
Signed-off-by: Stephane Bouchet <[email protected]>
1 parent 88fff13 commit 487e71a

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

src/main/java/com/redhat/devtools/intellij/commonuitest/fixtures/dialogs/project/pages/NewProjectFirstPage.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,7 @@ public void setProjectSdkIfAvailable(String targetSdkName) {
168168
System.out.println("About to click on "+label);
169169
projectSdkList.jList().clickItem(label, true);
170170
} else {
171+
System.out.println("No SDK found starting with"+targetSdkName);
171172
ScreenshotUtils.takeScreenshot(remoteRobot);
172173
}
173174

src/test-project/build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import org.jetbrains.intellij.platform.gradle.IntelliJPlatformType
22

33
plugins {
44
id("java")
5-
id("org.jetbrains.intellij.platform") version ("2.0.1")
5+
id("org.jetbrains.intellij.platform") version ("2.2.1")
66
}
77

88
group = "com.redhat.devtools.intellij"
@@ -28,9 +28,9 @@ dependencies {
2828
instrumentationTools()
2929
}
3030
testImplementation("com.redhat.devtools.intellij:intellij-common-ui-test-library")
31-
testImplementation("org.junit.platform:junit-platform-launcher:1.8.0")
32-
testImplementation("org.junit.jupiter:junit-jupiter-api:5.7.0")
33-
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.7.0")
31+
testImplementation("org.junit.platform:junit-platform-launcher:1.10.3")
32+
testImplementation("org.junit.jupiter:junit-jupiter-api:5.10.3")
33+
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.10.3")
3434
}
3535

3636
tasks {

0 commit comments

Comments
 (0)