jest-nunit-reporter
Version:
A NUnit test report formatter for Jest.
23 lines (22 loc) • 555 B
JavaScript
module.exports = {
failedCase: {
title: 'should foo the bar',
status: 'failed',
ancestorTitles: ['boo', 'foo'],
failureMessages: [`Assertion error
at Object.shallow (file.js:5:15)
at ReactShallowRenderer._mountClassComponent (file2.js:182:37)`]
},
pendingCase: {
title: 'should foobar the baz',
status: 'pending',
ancestorTitles: ['boo', 'foo'],
failureMessages: []
},
passingCase: {
title: 'should foofoo the baz',
status: 'passed',
ancestorTitles: ['boo', 'foo'],
failureMessages: []
}
};