-
Notifications
You must be signed in to change notification settings - Fork 125
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
Adding hasTagName assertion #496
Conversation
I believe I need to add an entry in the ember tests. |
@Turbo87 I forget how to make the ember tests work. I added an assertion, but |
I believe I figured it out. Added ember test. |
I think this PR should be closely followed by |
@@ -18,6 +18,7 @@ module('Acceptance | qunit-dom', function(hooks) { | |||
assert.dom('#title').exists(); | |||
assert.dom('#subtitle').doesNotExist(); | |||
assert.dom('#title').hasText('Welcome to Ember'); | |||
assert.dom('#title').hasTagName('h2'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
FWIW we don't have to add all the assertions here. this is just meant as a smoke test that the qunit-dom integration works correctly. the assertions itself are tested enough by the Jest test suite.
Implements #493.