Any ideas on why Micronaut ignores my test when I ...
# getting-started
s
Any ideas on why Micronaut ignores my test when I add the decorator
@MicronautTest
?
Copy code
@MicronautTest( environments = [ "Test"])
class RequestHandlerTestLocal: DescribeSpec ({

    lateinit var applicationContext: ApplicationContext
    describe("Lambda Tests") {

        it("Creates correct Audit errors") {
//            println( "hello-world" + applicationContext.environment )
            //TODO
        }
    }
})
result is an ignored test.
d
You added the extension in kotest for micronaut?