refactor(ivy): remove usage of Proxy for IE10/11 compatibility (#34328)
PR Close #34328
This commit is contained in:

committed by
Kara Erickson

parent
d661f1e993
commit
4779d24e75
@ -354,7 +354,7 @@ class TestCmptWithPropInterpolation {
|
||||
const bankElem = fixture.debugElement.children[0];
|
||||
|
||||
expect(bankElem.classes['closed']).toBe(true);
|
||||
expect(bankElem.classes['open']).toBe(false);
|
||||
expect(bankElem.classes['open']).toBeFalsy();
|
||||
});
|
||||
|
||||
it('should get element classes from host bindings', () => {
|
||||
@ -365,7 +365,7 @@ class TestCmptWithPropInterpolation {
|
||||
expect(debugElement.classes['present-class'])
|
||||
.toBe(true, 'Expected bound host CSS class "present-class" to be present');
|
||||
expect(debugElement.classes['absent-class'])
|
||||
.toBe(false, 'Expected bound host CSS class "absent-class" to be absent');
|
||||
.toBeFalsy('Expected bound host CSS class "absent-class" to be absent');
|
||||
});
|
||||
|
||||
it('should list element styles', () => {
|
||||
|
Reference in New Issue
Block a user