-
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
Textarea functional tests #324
Conversation
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.
Same comment about the extraClasses , but otherwise looks good
}) | ||
.end(); | ||
}, | ||
'hidden label should not be displayed'() { |
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.
I'm not sure we need to add an example and test for this, since it's part of label functionality rather than textarea functionality (and I'm not a fan of hidden labels, so not big on modeling them in all the widget examples)
8a1229e
to
8221990
Compare
Codecov Report
@@ Coverage Diff @@
## master #324 +/- ##
=======================================
Coverage 97.78% 97.78%
=======================================
Files 25 25
Lines 1940 1940
Branches 491 491
=======================================
Hits 1897 1897
Misses 20 20
Partials 23 23 Continue to review full report at Codecov.
|
src/textarea/example/index.ts
Outdated
@@ -52,6 +54,7 @@ export class App extends WidgetBase<WidgetProperties> { | |||
}), | |||
v('h3', {}, ['Validated, Required Textarea']), | |||
w(Textarea, { | |||
extraClasses: { root: 't3' }, |
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.
same comment as others re. wrapping div with class rather than extraClasses
.
4c6d6c9
to
11334bb
Compare
11334bb
to
745e838
Compare
Type: feature
The following has been addressed in the PR:
Description:
Resolves #160