hello folks, i dont understand why this test pass...
# kotest
a
hello folks, i dont understand why this test pass even if the spec has no tags
Copy code
@RequiresTag("Windows")
class Command : FunSpec({

    test("shutdown /r")  {
        println("Restarting Computer...")
    }
    test("shutdown"){
        println("Shutting Down....")
    }
})
s
It wouldn't fail either way, the tests don't do anything
a
@sam but the spec is not skipped here even if the tag "Windows" is not present
s
Ok I'd file a bug with a full reproducible example
a
thanks , I already did with other bugs