From b5f20e1650fff956c7c1a27f9172b09ce11ebe5a Mon Sep 17 00:00:00 2001 From: sergeych Date: Fri, 30 Jan 2026 10:16:51 +0300 Subject: [PATCH] Enable 4 ScriptTest cases --- 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 c38c0a0..9ba0378 100644 --- a/lynglib/src/commonTest/kotlin/ScriptTest.kt +++ b/lynglib/src/commonTest/kotlin/ScriptTest.kt @@ -56,14 +56,12 @@ import kotlin.test.Ignore * */ class ScriptTest { - @Ignore("incremental enable") @Test fun testVersion() { println("--------------------------------------------") println("version = ${LyngVersion}") } - @Ignore("incremental enable") @Test fun testClosureSeesCallerLocalsInLaunch() = runTest { val scope = Script.newScope() @@ -82,7 +80,6 @@ class ScriptTest { assertEquals(1L, (res as ObjInt).value) } - @Ignore("incremental enable") @Test fun testClosureResolvesGlobalsInLaunch() = runTest { val scope = Script.newScope() @@ -229,7 +226,6 @@ class ScriptTest { assertEquals(1, ti.cancelCount) } - @Ignore("incremental enable") @Test fun parseNewlines() { fun check(expected: String, type: Token.Type, row: Int, col: Int, src: String, offset: Int = 0) {