refactor(ivy): don't include removed classes in the styling debug (#34375)

This is mostly done to allign behaviour with DebugElement.classes and remove
Proxy usage (not supported in IE10/11).

PR Close #34375
This commit is contained in:
Pawel Kozlowski
2019-12-12 15:12:49 +01:00
committed by Kara Erickson
parent a9e3cbd534
commit 0fba79cda2
2 changed files with 3 additions and 32 deletions

View File

@ -1212,8 +1212,7 @@ describe('styling', () => {
classesSummary = classes.summary;
abcSummary = classesSummary['abc'];
expect(abcSummary.prop).toEqual('abc');
expect(abcSummary.value).toBeFalsy();
expect(abcSummary).toBeUndefined();
let defSummary = classesSummary['def'];
expect(defSummary.prop).toEqual('def');