should include the question in htmx:confirm event3ms ‣
var stub = sinon.stub()
try {
var btn = make('<button hx-get="/test" hx-confirm="Surely?">Click Me!</button>')
var handler = htmx.on('htmx:confirm', stub)
btn.click()
stub.calledOnce.should.equal(true)
stub.firstCall.args[0].detail.should.have.property('question', 'Surely?')
} finally {
htmx.off('htmx:confirm', handler)
}