-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
click doesn't trigger <a {{action}}> #139
Comments
What kind of test? Acceptance? |
Yes. More fully, moduleForAcceptance('Acceptance | Delete Thing', {
})
test('deleting things', async function (assert) {
// create a thing
await visit('/things')
await click(hook('delete', { id: thing.id }))
assert.hasNoElement($hook('thing', { name: thing.name }))
}) |
In What Ember version? |
@rwjblue I don't think that is right. In |
2.16.0-beta.2 |
I have a template:
and a test
With that, the action never fires. If I change the template to
everything works as expected.
If this is expected behavior, it would be nice to have it in the README. If it's unexpected, I may be able to create a reproduction to help solve it.
The text was updated successfully, but these errors were encountered: