is there anyway to ignore a test in common for cer...
# multiplatform
a
is there anyway to ignore a test in common for certain platforms? I've seen the exact/actual way of doing it, but don't like havint to make so many classes & files just to do this 😛
o
Hi, Adam. What do you use for testing? Is it a kotest framework or something else?
m
Not sure if this is what you want, but I was having some issues with wasmJs test and I disabled it this way:
Copy code
wasmJs {
        browser {
            testTask {
                enabled = false
            }
        }
    }