-
Notifications
You must be signed in to change notification settings - Fork 25
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 junit result format to test:run command #96
Conversation
successResult | ||
} from './testResults'; | ||
|
||
describe('JUnit Reporter Tests', () => { |
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.
Let's add a test case where the data also has code coverage info
// header | ||
let JUNIT_TEMPLATE = `<?xml version="1.0" encoding="UTF-8"?>\n`; | ||
JUNIT_TEMPLATE += `<testsuites>\n`; | ||
JUNIT_TEMPLATE += ` <testsuite name="force.apex" `; |
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.
Can we use \t
or a variable that represents the spacing ? The current pattern seems easy to accidentally break without clearly noticing it on a code review/diff.
What does this PR do?
This PR adds the JUnit result format to the test:run command
What issues does this PR fix or reference?
@W-7561364@