You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: kotlin-sdk-test/src/jvmTest/kotlin/io/modelcontextprotocol/kotlin/sdk/integration/typescript/TypeScriptTestBase.kt
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -173,7 +173,9 @@ abstract class TypeScriptTestBase {
173
173
killProcessOnPort(port)
174
174
175
175
if (!sdkDir.exists() ||!sdkDir.isDirectory) {
176
-
throwIllegalStateException("TypeScript SDK directory does not exist or is not accessible: ${sdkDir.absolutePath}")
176
+
throwIllegalStateException(
177
+
"TypeScript SDK directory does not exist or is not accessible: ${sdkDir.absolutePath}",
178
+
)
177
179
}
178
180
179
181
val isWindows =System.getProperty("os.name").lowercase().contains("windows")
0 commit comments