Hello, is a version of the Kotest Plugin arriving ...
# kotest
g
Hello, is a version of the Kotest Plugin arriving for
IDEA 2025.1
? My Kotest Plugin
1.3.92-2024.3.1
is preventing me from navigating to tests by using
Navigate -> Test
. See the attached screenshot.
s
I'm close to a fix for this.
💯 2
e
I hope it will be in a stable release and not just the 6.0 beta.
s
It's the plugin so not related to the kotest framework version.
can you try the latest version that was released today ?
e
I did, and it did not work.
s
Hmmm that is a completely different error.
that looks like a bug in intellij
Caused by: java.lang.NullPointerException: Cannot invoke "com.intellij.ui.treeStructure.Tree$ExpandImpl.isExpanded(int)" because "this.expandImpl" is null
And this is the impl from intellij itself
Copy code
public boolean isExpanded(int row) {
    return this.expandImpl != null ? this.expandImpl.isExpanded(row) : super.isExpanded(row);
  }
s
This must be a regression in 2025.1 because it works for me in 2024.3.5
As you say, expandImpl should never be nullable
Copy code
private final @NotNull Tree.ExpandImpl expandImpl;
I'll track the issue
There's another release out @Giorgio Vespucci
g
Is it this one?
In case, I've got it this morning... 🙂
s
Yeah
Should be good for navigating to tests
g
Yes, indeed! 🙂 It seems working nod
🙂 1