src/jsTest/kotlin/org/intellij/markdown/MarkdownTestUtilJs.kt [25:40]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - actual fun assertSameLinesWithFile(path: String, result: String) { assertEqualsIdeaFriendly(readFromFile(path), result) } actual fun getIntellijMarkdownHome(): String { return intellijMarkdownHome.value } private fun assertEqualsIdeaFriendly(expected: String, actual: String) { if (actual != expected) { @Suppress("ReplaceAssertBooleanWithAssertEquality") assertTrue(actual == expected, "expected:<$expected> but was:<$actual>") } } actual abstract class TestCase { - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - src/wasmJsTest/kotlin/org/intellij/markdown/MarkdownTestUtilJs.kt [25:40]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - actual fun assertSameLinesWithFile(path: String, result: String) { assertEqualsIdeaFriendly(readFromFile(path), result) } actual fun getIntellijMarkdownHome(): String { return intellijMarkdownHome.value } private fun assertEqualsIdeaFriendly(expected: String, actual: String) { if (actual != expected) { @Suppress("ReplaceAssertBooleanWithAssertEquality") assertTrue(actual == expected, "expected:<$expected> but was:<$actual>") } } actual abstract class TestCase { - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -