
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
JUnit XML report builder with TypeScript support.
npm install junit-xml
import { getJunitXml } from 'junit-xml';
const testSuiteReport = {
name: 'Some test suite report name',
time: 4.2,
suites: [
{
name: 'Some suite',
timestamp: new Date(Date.UTC(1989, 10, 3)),
hostname: 'some-hostname',
time: 1.1337,
testCases: [
{
name: 'Successful test',
assertions: 2,
classname: 'successful-test-class',
time: 0.72,
},
{
name: 'Skipped test',
assertions: 2,
skipped: true,
},
{
name: 'Unskipped test',
skipped: false,
},
{
name: 'Failing test',
failures: [
{ message: 'First failure', type: 'some-type' },
{ message: 'Second failure' },
],
},
{
name: 'Another failing test',
failures: [
{ message: 'Just one failure' },
],
},
{
name: 'Erroring test',
errors: [
{ message: 'First error', type: 'some-type' },
{ message: 'Second error' },
],
},
{
name: 'Another erroring test',
errors: [
{ message: 'Just one error' },
],
},
{
name: 'Test with output',
systemOut: [
'First output',
'Second output',
],
},
{
name: 'Test with single output',
systemOut: [
'Only output',
],
},
{
name: 'Test with error output',
systemErr: [
'First error output',
'Second error output',
],
},
{
name: 'Test with single error output',
systemErr: [
'Only error output',
],
},
],
},
{
name: 'Suite without test cases',
testCases: [],
},
{
name: 'Another suite',
testCases: [
{ name: 'Some successful test' },
],
},
],
};
const junitXml = getJunitXml(testSuiteReport);
getJunitXml(testSuiteReport: TestSuiteReport, options?: { schema: 'default' | 'ant-junit' }): string
testSuiteReport
A Javascript object representation of your test suite report. See the type definitions for available properties.
options
Optional object configuring the output. Properties:
schema: 'default' | 'ant-junit'
Default: 'default'
The required format of the resulting XML string. By default, this is set to the format expected by GitLab CI/CD. Alternative options:
'ant-junit'
: The format used by Azure DevOps. Conforms to this schema: https://github.com/windyroad/JUnit-Schema/blob/master/JUnit.xsdAn XML string in JUnit test report format.
See CHANGELOG.
MIT © Vincent Tunru
[1.2.0] - 2019-10-07
FAQs
JUnit XML report builder with TypeScript support
We found that junit-xml demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.