From a29acb600093b062eef4f551a2d26890fd8cb5e8 Mon Sep 17 00:00:00 2001 From: sergeych Date: Fri, 30 Jan 2026 19:59:58 +0300 Subject: [PATCH] Unignore ScriptTest json/map/comments --- lynglib/src/commonTest/kotlin/ScriptTest.kt | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lynglib/src/commonTest/kotlin/ScriptTest.kt b/lynglib/src/commonTest/kotlin/ScriptTest.kt index d4343a9..68865c5 100644 --- a/lynglib/src/commonTest/kotlin/ScriptTest.kt +++ b/lynglib/src/commonTest/kotlin/ScriptTest.kt @@ -4092,7 +4092,6 @@ class ScriptTest { ) } - @Ignore("incremental enable") @Test fun testInlineMapLiteral() = runTest { eval( @@ -4106,7 +4105,6 @@ class ScriptTest { ) } - @Ignore("incremental enable") @Test fun testCommentsInClassConstructor() = runTest { eval( @@ -4127,7 +4125,6 @@ class ScriptTest { @Serializable data class JSTest1(val foo: String, val one: Int, val ok: Boolean) - @Ignore("incremental enable") @Test fun testToJson() = runTest { val x = eval("""{ "foo": "bar", "one": 1, "ok": true }""") @@ -4141,7 +4138,6 @@ class ScriptTest { assertEquals(JSTest1("bar", 1, true), x.decodeSerializable()) } - @Ignore("incremental enable") @Test fun testJsonTime() = runTest { val now = Clock.System.now()