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 a91e594 commit c226c09Copy full SHA for c226c09
src/main/kotlin/com/emberjs/glint/GlintLspSupportProvider.kt
@@ -98,6 +98,9 @@ class GlintLspServerDescriptor(private val myProject: Project) : LspServerDescri
98
}
99
100
fun isAvailable(vfile: VirtualFile?): Boolean {
101
+ if (ApplicationManager.getApplication().isUnitTestMode) {
102
+ return false
103
+ }
104
val config = GlintConfiguration.getInstance(myProject)
105
val pkg = config.getPackage()
106
pkg.readOrDetect()
0 commit comments