ozontech / allure-go

Complete Allure provider in Go which doesn't overload the interface usage
https://t.me/allure_go_chat
Apache License 2.0
306 stars 33 forks source link

Add layers support for Allure TestOPS #65

Closed Nikita-Filonov closed 1 year ago

Nikita-Filonov commented 1 year ago

Description Added support for layers in Allure TestOPS according to the docs

Layer should be used like this

func TestSomething(t *testing.T) {
    allure.Test(t, allure.Layer("E2E"), allure.Action(func() {
        ...
    }))
}

Any comments and suggestions will be appreciated