-
-
Notifications
You must be signed in to change notification settings - Fork 4.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
Deprecate ember create keys #11511
Deprecate ember create keys #11511
Conversation
@rwjblue as per request. Also, unsure if this is labelled correct |
👍 - And labeled just fine, thank you! |
@@ -32,3 +32,14 @@ QUnit.test('SEMVER_REGEX properly validates and invalidates version numbers', fu | |||
validateVersionString('1.11', false); | |||
}); | |||
|
|||
QUnit.test('Ember.keys is deprecated', function(){ |
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.
Missing a space after function()
here.
3eff276
to
e7efd45
Compare
expectDeprecation(function() { | ||
Ember.keys({}); | ||
}, 'Ember.create is deprecated in-favour of Object.create'); | ||
}) |
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.
Missing semicolon (causing JSHint failure).
e7efd45
to
d60b750
Compare
d60b750
to
1ed73ac
Compare
No description provided.