Skip to content
Open
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
4 changes: 2 additions & 2 deletions core/driver/sources/src/main/resources/reference.conf
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ probe {
// Nevertheless, best if you provide both values that match because ide-probe uses `version.release`
// to choose the version and `version.build` number for naming cache directories etc.
version {
build = "212.5080.55"
release = "2021.2.1"
build = "223.8617.56"
release = "2022.3.2"

// `ext` stands for the file extension (file format). This config specifies which extension should be
// downloaded and installed. By default, ".zip" distributions of IntelliJ IDEA are downloaded. For now
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ class IdeProbeConfigTest extends IdeProbeFixture {
val probeConfig = IntelliJFixture.readIdeProbeConfig(config, configRoot)
// tests for the intellij: IntellijConfig field
assertTrue(probeConfig.intellij.isInstanceOf[IntellijConfig.Default])
assertEquals("212.5080.55", probeConfig.intellij.asInstanceOf[IntellijConfig.Default].version.build)
assertEquals(Some("2021.2.1"), probeConfig.intellij.asInstanceOf[IntellijConfig.Default].version.release)
assertEquals("223.8617.56", probeConfig.intellij.asInstanceOf[IntellijConfig.Default].version.build)
assertEquals(Some("2022.3.2"), probeConfig.intellij.asInstanceOf[IntellijConfig.Default].version.release)
assertEquals(Seq.empty, probeConfig.intellij.asInstanceOf[IntellijConfig.Default].plugins)
// test for the workspace: Option[WorkspaceConfig] field
assertEquals(None, probeConfig.workspace)
Expand Down Expand Up @@ -79,7 +79,7 @@ class IdeProbeConfigTest extends IdeProbeFixture {
// tests for the intellij: IntellijConfig field
assertTrue(probeConfig.intellij.isInstanceOf[IntellijConfig.Default])
assertEquals("201.6668.121", probeConfig.intellij.asInstanceOf[IntellijConfig.Default].version.build)
assertEquals(Some("2021.2.1"), probeConfig.intellij.asInstanceOf[IntellijConfig.Default].version.release)
assertEquals(Some("2022.3.2"), probeConfig.intellij.asInstanceOf[IntellijConfig.Default].version.release)
assertEquals(1, probeConfig.intellij.plugins.size)
assertTrue(probeConfig.intellij.plugins.head.isInstanceOf[Plugin.Versioned])
assertEquals("org.intellij.scala", probeConfig.intellij.plugins.head.asInstanceOf[Plugin.Versioned].id)
Expand Down