-
Notifications
You must be signed in to change notification settings - Fork 0
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: add test reporting to component generation #94
Conversation
760cab1
to
5fe2e0e
Compare
@@ -1,7 +1,7 @@ | |||
import '../<%= hyphenatedName %>.js'; | |||
import { expect, fixture, html } from '@brightspace-ui/testing'; | |||
|
|||
describe('<%= className %>', () => { | |||
describe('<%= tagName %>', () => { |
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.
This didn't match what we tend to do in the wild and also didn't match our vdiff suite names. Changing to be all the same
@@ -1,7 +1,7 @@ | |||
import '../<%= hyphenatedName %>.js'; | |||
import { runConstructor } from '@brightspace-ui/testing'; | |||
|
|||
describe('<%= className %>', () => { | |||
describe('<%= tagName %>', () => { |
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.
This didn't match what we tend to do in the wild and also didn't match our vdiff suite names. Changing to be all the same
5fe2e0e
to
3788c79
Compare
3788c79
to
90ed8b2
Compare
Co-authored-by: Dave Lockhart <[email protected]>
🎉 This PR is included in version 3.3.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
https://desire2learn.atlassian.net/browse/QE-264
This adds the configuration pieces for test reporting and fixes a few other minor inconsistencies.