fix(ivy): should support components without selector (#27169)
PR Close #27169
This commit is contained in:
@ -47,6 +47,9 @@ describe('css selector matching', () => {
|
||||
.toBeFalsy(`Selector 'span' should NOT match <SPAN>'`);
|
||||
});
|
||||
|
||||
it('should never match empty string selector', () => {
|
||||
expect(isMatching('span', null, [''])).toBeFalsy(`Selector '' should NOT match <span>`);
|
||||
});
|
||||
});
|
||||
|
||||
describe('attributes matching', () => {
|
||||
|
Reference in New Issue
Block a user