-
Notifications
You must be signed in to change notification settings - Fork 6.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(icon): add e2e icon tests #794
Conversation
testIcon = element(by.id('test-icon')); | ||
}); | ||
|
||
it('aria-label should be correct', () => { |
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.
Tests should be of the form
it('should set the aria-label from the ligature name', ...
LGTM other than the names of the tests |
@jelbourn Ok, I changed the test names. |
@jesselpalmer minor lint error |
@jelbourn ok, blank line ending added, though strangely they don't appear on GitHub. |
LGTM |
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
PR includes basic tests for icon and removes unnecessary code from
e2e-app.ts
ande2e-app.html
, similarly found in PR #650.Closes #560.
R: @jelbourn