Closed
Description
Feature Description
MatListItem supports the Input disabled
but there is no easy way to test this. You have to know about the internals to test it.
expect(await (await matListItemHarness.host()).getCssValue('pointer-events')).toBe('none')
It would be nice to have a dedicated method like
expect(await matListItemHarness.isDisabled()).toBeTruthy()
Use Case
This feature improves the test usability and hides implementation details.