-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Update to QUnit 2.0 compatible output. #3197
Conversation
@@ -9,7 +9,7 @@ moduleFor('adapter:<%= dasherizedModuleName %>', '<%= classifiedModuleName %>Ada | |||
}); | |||
|
|||
// Replace this with your real tests. | |||
test('it exists', function() { | |||
test('it exists', function(assert) { |
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.
Does this and the other places need to be QUnit.test
?
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.
Test is imported from ember-qunit here, so no.
You missed a lot of |
See http://qunitjs.com/upgrade-guide-2.x/ for more details.
b1c0572
to
c35e358
Compare
Restarting travis but looks good to me. |
a7568ee
to
4c7a8fc
Compare
Update to QUnit 2.0 compatible output.
As noted in [this issue](ember-cli/ember-cli#3197), assert is now to be prepended to assertions and passed in to the test function. This commit was generated by ember-watson.
See http://qunitjs.com/upgrade-guide-2.x/ for more details.
Closes #3196.