-
Notifications
You must be signed in to change notification settings - Fork 27.4k
feat(ngClass): support multiple classes in key #7140
Conversation
Thanks for the PR! Please check the items below to help us merge this faster. See the contributing docs for more information.
If you need to make changes to your pull request, you can update the commit with Thanks again for your help! |
This is a feature, not a fix. |
I doubt we want this... @IgorMinar @caitp: thoughts? |
I dunno, it's not a whole lot of code, and it might make things behave more in a way people expect, but yeah I am not sure. |
I guess we should merge this one as there are more people bumping into it, ex: |
Yeah, since it's a regression, it probably should be fixed |
This generally LGTM. |
|
||
expect(element.hasClass('same')).toBeTruthy(); | ||
expect(element.hasClass('yes')).toBeFalsy(); | ||
expect(element.hasClass('no')).toBeTruthy(); |
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.
should prefer toBe(true/false)
over toBeTruthy/Falsy()
, though
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.
I just went with the flow. toBeTruthy/Falsy()
is used all over ngClassSpec
. I can fix them all if you like, np...
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.
There's a custom matcher which is already partially used: toHaveClass
. We could change all tests to use it... WDYT?
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.
I don't think it's worth changing the tests to do that, but you could certainly use that here, it would be better semantically.
It has an issue with testing for multiple classes though --- if they're in the wrong order, it gets them wrong, and there are other issues with it. But it reads nicely
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.
ok, fixed only for this single 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.
It has an issue with testing for multiple classes though
The custom matcher does? It looks like all it does is call hasClass
internally.
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.
I mean specifically if you are testing multiple classes in the same call, like so:
expect(element).toHaveClass(‘foo bar baz’);
The reason is that what it’s essentially doing is checking className.indexOf(expectedClass)
, so if they’re in the wrong order, it breaks.
It doesn’t hurt these tests, though.
Caitlin Potter
caitpotter88@gmail.com
On May 30, 2014, at 2:59 PM, Brian Ford notifications@github.com wrote:
In test/ng/directive/ngClassSpec.js:
@@ -205,6 +205,23 @@ describe('ngClass', function() {
expect(e2.hasClass('odd')).toBeTruthy();
}));
- it('should allow ngClass with overlapping classes', inject(function($rootScope, $compile, $animate) {
element = $compile('<div ng-class="{\'same yes\': test, \'same no\': !test}"></div>')($rootScope);
$rootScope.$digest();
expect(element.hasClass('same')).toBeTruthy();
expect(element.hasClass('yes')).toBeFalsy();
It has an issue with testing for multiple classes thoughexpect(element.hasClass('no')).toBeTruthy();
The custom matcher does? It looks like all it does is call hasClass internally.
—
Reply to this email directly or view it on GitHub.
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.
So this is a general issue with hasClass
. We could fix toHaveClass
to split by space and test them individually. Doesn't seem worth it imo, probably better to have multiple assertions in the actual test.
Agreed. 👍 I use this to add dynamic behavior into html elements by choosing one set of classes. In which set, some classes may or may not be repeated. |
Landed as 7eaaca8. |
fixes #7135