Skip to content
Merged
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
6 changes: 3 additions & 3 deletions third_party/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,9 @@ java {

dependencies {
intellijPlatform {
// intellijIdeaCommunity can be found here:
// intellijIdea can be found here:
// https://www.jetbrains.com/idea/download/other.html
intellijIdeaCommunity("2025.1.1")
intellijIdea("2025.3.1.1")

testFramework(TestFrameworkType.Platform)

Expand Down Expand Up @@ -122,7 +122,7 @@ tasks {
val dartSdkPath = System.getenv("DART_HOME")
if (dartSdkPath != null) {
val versionFile = file("${dartSdkPath}/version")
if (versionFile.exists() && versionFile.isFile()) {
if (versionFile.exists() && versionFile.isFile) {
jvmArgs("-Ddart.sdk=${dartSdkPath}")
} else {
logger.error("This directory, ${dartSdkPath}, doesn't appear to be Dart SDK path, " +
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,8 @@ public void testMethod() {
doTest("newName");
}

public void testFileRename() {
// See: https://github.com/flutter/dart-intellij-third-party/issues/219
public void skipped_testFileRename() {
PsiFile barFile = myFixture.addFileToProject("src/bar.dart",
"<info>class</info> <info>InBar</info> { <info>var</info> <info>field</info>; <error>incorrect</error>; }");
PsiFile fooFile = myFixture.addFileToProject("foo.dart", "import r'''src/bar.dart''' ;");
Expand Down
Loading