-
Notifications
You must be signed in to change notification settings - Fork 64
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
Add TimePicker functional tests #368
Add TimePicker functional tests #368
Conversation
Codecov Report
@@ Coverage Diff @@
## master #368 +/- ##
=======================================
Coverage 97.79% 97.79%
=======================================
Files 25 25
Lines 1947 1947
Branches 494 494
=======================================
Hits 1904 1904
Misses 20 20
Partials 23 23 Continue to review full report at Codecov.
|
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.
One subjective question about skip messages. Also, it was a little hard to read the diff since the indentation changed on the example page, but the code changes and added test look solid.
'validated inputs update on input'() { | ||
const { browserName } = this.remote.session.capabilities; | ||
if (browserName === 'internet explorer') { | ||
this.skip('Test does not work on Internet Explorer'); |
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.
Should we be more descriptive with the messages we pass when skipping tests? Do we know the level at which this test fails? Intern? Leadfoot? A driver? This is largely rhetorical, just trying to think of ways to make the skips less ugly.
This may be as good as we can do for now.
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.
When I'm able to easily find a reason in one of the other skips, I use it. Otherwise, trying to figure out the underlying cause is what had been holding up the tests, so I haven't been bothering anymore. I think the plan was to just skip with abandon then document and fix later.
Type: feature
The following has been addressed in the PR:
Description:
Wraps example tests with identifiers. Adds functional tests.
Resolves #162