We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e54b315 commit d17f568Copy full SHA for d17f568
build.gradle.kts
@@ -119,7 +119,12 @@ val runIdeForUiTests by intellijPlatformTesting.runIde.registering {
119
intellijPlatform {
120
pluginVerification {
121
ides {
122
- recommended()
+ select {
123
+ types = listOf(IntelliJPlatformType.IntellijIdeaCommunity)
124
+ channels = listOf(ProductRelease.Channel.RELEASE) // Only stable releases
125
+ sinceBuild = "251" // From your minimum supported version
126
+ untilBuild = "252.*" // Up to current major version
127
+ }
128
}
129
freeArgs = listOf(
130
"-mute",
0 commit comments