mint
mint copied to clipboard
Allow `as` element references inside of test blocks
Being able to do something like this could be convenient
suite "Button" {
test "has a reference" {
<button as btn/>
|> Test.Html.start
|> (ctx : Test.Context(Dom.Element)) {
btn != Maybe::Nothing
}
}
}