All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jsTest.com.bkahlert.kommons.debug.TraceJsKtTest.kt Maven / Gradle / Ivy

There is a newer version: 2.8.0
Show newest version
@file:Suppress("DEPRECATION")

package com.bkahlert.kommons.debug

import com.bkahlert.kommons.test.testAll
import io.kotest.matchers.should
import io.kotest.matchers.string.shouldMatch
import kotlin.test.Test

class TraceJsKtTest {

    @Test fun trace_js() = testAll {
        buildString {
            "subject".traceJs(out = this::append)
        } should {
            it shouldMatch "⟨ \"subject\" ⟩".toRegex()
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy