-
Notifications
You must be signed in to change notification settings - Fork 160
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
test(e2e-storybook): fix feature-card e2e skipped tests and make them… #12130
test(e2e-storybook): fix feature-card e2e skipped tests and make them… #12130
Conversation
✅ Deploy Preview for ibm-dotcom-web-components ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
✅ Deploy Preview for ibm-dotcom-web-components-react-wrap ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
@@ -96,7 +96,7 @@ export const Large = (args) => { | |||
</c4d-image> | |||
<c4d-card-eyebrow>${eyebrow}</c4d-card-eyebrow> | |||
<c4d-card-heading>${heading}</c4d-card-heading> | |||
${copy && html`<p></p>`} | |||
${copy ? html`<p>${copy}</p>` : ''} |
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.
In the storybook the large variation wasn't having a paragraph with copy, it was empty instead. As per Figma this large variation always has a copy, so I added that conditionally for our tests to correctly do their checkage. Thanks!
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.
Looks great! Nice work.
carbon-design-system#12130) … valid ### Related Ticket(s) Closes # [carbon-design-system/issues/12121](carbon-design-system#12121) ### Description The e2e-storybook tests have been failing for quite awhile. The tests do not appear to have been updated for v2. In many cases, the tests are using the old v1 prefixes. The goal here is: - Fix all skipped tests and align them with what we have in v2. ### Changelog **New** - Updated e2e-storybook for feature-card component so that all skipped tests are now running and correctly and doing the proper checkage
#12130) … valid ### Related Ticket(s) Closes # [/issues/12121](#12121) ### Description The e2e-storybook tests have been failing for quite awhile. The tests do not appear to have been updated for v2. In many cases, the tests are using the old v1 prefixes. The goal here is: - Fix all skipped tests and align them with what we have in v2. ### Changelog **New** - Updated e2e-storybook for feature-card component so that all skipped tests are now running and correctly and doing the proper checkage
… valid
Related Ticket(s)
Closes #
/issues/12121
Description
The e2e-storybook tests have been failing for quite awhile. The tests do not appear to have been updated for v2. In many cases, the tests are using the old v1 prefixes.
The goal here is:
Changelog
New