raniejade/kspec

Tagging Support

Closed this issue · 0 comments

Similar to Rspec's metadata, add support to add tags to an example. Possible use case: implementing focused tests.

it("foo", focus()) {
    ...
}

// possibly - shorthand for it(desc, focus()) { ... }
fit("foo") {
    ...
}