diff --git a/libraries/kotlin.test/js/it/src/test/kotlin/MainTest.kt b/libraries/kotlin.test/js/it/src/test/kotlin/MainTest.kt index f2f9828eaef..5085791bb50 100644 --- a/libraries/kotlin.test/js/it/src/test/kotlin/MainTest.kt +++ b/libraries/kotlin.test/js/it/src/test/kotlin/MainTest.kt @@ -1,24 +1,15 @@ -import kotlin.test.* +import kotlin.test.Ignore +import kotlin.test.Test -var value = 5 - class SimpleTest { - @BeforeTest fun beforeFun() { - value *= 2 - } - - @AfterTest fun afterFun() { - value /= 2 - } - @Test fun testFoo() { - assertNotEquals(value, foo()) + assertNotEquals(10, foo()) } @Test fun testBar() { - assertEquals(value, foo()) + assertEquals(10, foo()) } @Ignore @Test fun testFooWrong() {