import { beVisible, haveClasses, haveAttribute, html, notBeVisible, notHaveClasses, test } from '../../../utils' test('has accessibility attributes', [html`
Content
`], ({ get }) => { get('button').should(haveAttribute('aria-expanded', 'false')) get('button').should(haveAttribute('aria-controls', 'alpine-disclosure-panel-1')) get('[panel]').should(haveAttribute('id', 'alpine-disclosure-panel-1')) }, ) test('it toggles', [html`
Content
`], ({ get }) => { get('[panel]').should(notBeVisible()) get('[trigger]').click() get('[panel]').should(beVisible()) get('[trigger]').click() get('[panel]').should(notBeVisible()) }, ) test('$disclosure.isOpen and $disclosure.close() work', [html`
Content
`], ({ get }) => { get('[panel]').should(notHaveClasses(['open'])) get('[trigger]').click() get('[panel]').should(haveClasses(['open'])) get('[close-button]').click() get('[panel]').should(notBeVisible()) }, ) test('can set a default open state', [html`
Content
`], ({ get }) => { get('[panel]').should(beVisible()) get('[trigger]').click() get('[panel]').should(notBeVisible()) }, ) test('it toggles using the space key', [html`
Content
`], ({ get }) => { get('[panel]').should(notBeVisible()) get('[trigger]').click() get('[panel]').should(beVisible()) get('[trigger]').type(' ') get('[panel]').should(notBeVisible()) get('[trigger]').type(' ') get('[panel]').should(beVisible()) }, )