import { beHidden, beVisible, haveText, beChecked, haveAttribute, haveClasses, haveValue, notBeChecked, notHaveAttribute, notHaveClasses, test, html } from '../../utils'
test('style attribute object binding',
html`
I should be red
`,
({ get }) => {
get('span').should(haveAttribute('style', 'color: red;'))
}
)
test('style attribute object bindings are merged with existing styles',
html`
I should be red
`,
({ get }) => {
get('span').should(haveAttribute('style', 'display: block; color: red;'))
}
)