`,
({ get }) => {
get('button').click()
get('span').should(beVisible())
get('h1').should(notHaveComputedStyle('opacity', '1')) // We expect a value between 0 and 1
get('h1').should(haveComputedStyle('opacity', '1')) // Eventually opacity will be 1
}
)
test(
'bound x-transition can handle empty string and true values',
html`
thing
`,
({ get }) =>
{
get('span').should(beVisible())
get('span').should(beVisible())
}
);