mirror of
https://github.com/JetBrains/intellij-platform-plugin-template.git
synced 2024-10-27 20:44:05 +00:00
Cleanup registering the runIdeForUiTests
task
This commit is contained in:
parent
b0c4bb5b62
commit
3c399f798b
@ -9,6 +9,7 @@
|
||||
- Dependencies - upgrade `org.jetbrains.intellij.platform` to `2.0.1`
|
||||
- Update `platformVersion` to `2023.3.7`
|
||||
- Change since/until build to `233-242.*` (2023.3-2024.2.*)
|
||||
- Cleanup registering the `runIdeForUiTests` task
|
||||
|
||||
## [2.0.0] - 2024-07-30
|
||||
|
||||
|
@ -1,6 +1,5 @@
|
||||
import org.jetbrains.changelog.Changelog
|
||||
import org.jetbrains.changelog.markdownToHTML
|
||||
import org.jetbrains.intellij.platform.gradle.Constants.Constraints
|
||||
import org.jetbrains.intellij.platform.gradle.TestFrameworkType
|
||||
|
||||
plugins {
|
||||
@ -136,19 +135,23 @@ tasks {
|
||||
}
|
||||
}
|
||||
|
||||
val runIdeForUiTests by intellijPlatformTesting.runIde.registering {
|
||||
task {
|
||||
jvmArgumentProviders += CommandLineArgumentProvider {
|
||||
listOf(
|
||||
"-Drobot-server.port=8082",
|
||||
"-Dide.mac.message.dialogs.as.sheets=false",
|
||||
"-Djb.privacy.policy.text=<!--999.999-->",
|
||||
"-Djb.consents.confirmation.enabled=false",
|
||||
)
|
||||
intellijPlatformTesting {
|
||||
runIde {
|
||||
register("runIdeForUiTests") {
|
||||
task {
|
||||
jvmArgumentProviders += CommandLineArgumentProvider {
|
||||
listOf(
|
||||
"-Drobot-server.port=8082",
|
||||
"-Dide.mac.message.dialogs.as.sheets=false",
|
||||
"-Djb.privacy.policy.text=<!--999.999-->",
|
||||
"-Djb.consents.confirmation.enabled=false",
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
plugins {
|
||||
robotServerPlugin()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
plugins {
|
||||
robotServerPlugin(Constraints.LATEST_VERSION)
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user