Skip to content

Commit a72ff61

Browse files
committed
chore: bump common-ui-tests to 0.4.5-SNAPSHOT
Signed-off-by: Stephane Bouchet <sbouchet@redhat.com>
1 parent f6d2f07 commit a72ff61

File tree

5 files changed

+4
-5
lines changed

5 files changed

+4
-5
lines changed

.github/workflows/itests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
distribution: temurin
7575
java-version: 17
7676
- name: Run integration tests
77-
run: .\gradlew.bat integrationTest
77+
run: .\gradlew.bat integrationTest --warning-mode none
7878
shell: powershell
7979
- uses: actions/upload-artifact@v4
8080
with:

build.gradle.kts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,6 @@ val runIdeForUiTests by intellijPlatformTesting.runIde.registering {
326326
task {
327327
jvmArgumentProviders += CommandLineArgumentProvider {
328328
listOf(
329-
"-Drobot-server.port=8580",
330329
"-Dide.mac.message.dialogs.as.sheets=false",
331330
"-Djb.privacy.policy.text=<!--999.999-->",
332331
"-Djb.consents.confirmation.enabled=false",

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ devtools-common-ui-test = "0.4.5-SNAPSHOT"
99
testlogger = "4.0.0"
1010
kotlin = "2.0.20"
1111
changelog = "2.2.0"
12-
gradleIntelliJPlugin = "2.5.0"
12+
gradleIntelliJPlugin = "2.6.0"
1313

1414
[libraries]
1515
junit = { group = "junit", name = "junit", version.ref = "junit" }

src/it/java/org/jboss/tools/intellij/quarkus/fixtures/dialogs/project/pages/QuarkusNewProjectFirstPage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public QuarkusNewProjectFirstPage(@NotNull RemoteRobot remoteRobot, @NotNull Rem
3838

3939
@Override
4040
public ComboBoxFixture getProjectJdkComboBox() {
41-
if (UITestRunner.getIdeaVersionInt() >= 20241) {
41+
if (UITestRunner.getIdeaVersionInt() >= 20233) {
4242
return comboBox(byXpath(XPathDefinitions.PROJECT_SDK_COMBOBOX_PROJECT_WIZARD), Duration.ofSeconds(10));
4343
}
4444
throw new UnsupportedOperationException("Get Project SDK ComboBox is not supported yet for IDEA version " + UITestRunner.getIdeaVersionInt());

src/it/java/org/jboss/tools/intellij/quarkus/tests/AbstractQuarkusTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public abstract class AbstractQuarkusTest {
3333
@BeforeAll
3434
protected static void startIntelliJ() {
3535
if (!intelliJHasStarted) {
36-
remoteRobot = UITestRunner.runIde(IntelliJVersion.COMMUNITY_V_2024_3, 8580);
36+
remoteRobot = UITestRunner.runIde(IntelliJVersion.COMMUNITY_V_2023_3, 8580);
3737
intelliJHasStarted = true;
3838
Runtime.getRuntime().addShutdownHook(new CloseIntelliJBeforeQuit());
3939

0 commit comments

Comments
 (0)