Skip to content

Commit

Permalink
deps: update xmlbuilder
Browse files Browse the repository at this point in the history
  • Loading branch information
MylesBorins committed Mar 25, 2020
1 parent 07cc723 commit e7bcc45
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 29 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -57,7 +57,7 @@
"which": "^2.0.1",
"winston": "^3.2.1",
"xml-sanitizer": "^1.1.6",
"xmlbuilder": "^13.0.2",
"xmlbuilder": "^15.0.0",
"yargs": "^15.1.0",
"yarn": "^1.19.1"
},
Expand Down
8 changes: 4 additions & 4 deletions test/fixtures/parsed-junit.json
Expand Up @@ -9,14 +9,14 @@
"name": "iPass-v4.2.2",
"time": "0.05"
},
"system-out": ["\n \n "]
"system-out": [""]
},
{
"$": {
"name": "iFlakyFail-v3.3.3",
"time": "0.05"
},
"system-out": ["\n Thanks for testing!\n "],
"system-out": [" Thanks for testing!"],
"skipped": [""],
"failure": [
{
Expand All @@ -32,7 +32,7 @@
"name": "iFail-v3.0.1",
"time": "0.05"
},
"system-out": ["\n Thanks for testing!\n "],
"system-out": [" Thanks for testing!"],
"failure": [
{
"_": "[object Object] ",
Expand All @@ -47,7 +47,7 @@
"name": "iSkipped",
"time": "NaN"
},
"system-out": ["\n \n "],
"system-out": [""],
"skipped": [""]
}
]
Expand Down
16 changes: 4 additions & 12 deletions test/fixtures/test-out-xml-failing.txt
@@ -1,26 +1,18 @@
<testsuite name="citgm">
<testcase name="iPass-v4.2.2" time="0.05">
<system-out>
<![CDATA[]]>
</system-out>
<system-out/>
</testcase>
<testcase name="iFlakyFail-v3.3.3" time="0.05">
<system-out>
<![CDATA[ Thanks for testing!]]>
</system-out>
<system-out><![CDATA[ Thanks for testing!]]></system-out>
<skipped/>
<failure message="module test suite failed">[object Object] </failure>
</testcase>
<testcase name="iFail-v3.0.1" time="0.05">
<system-out>
<![CDATA[ Thanks for testing!]]>
</system-out>
<system-out><![CDATA[ Thanks for testing!]]></system-out>
<failure message="module test suite failed">[object Object] </failure>
</testcase>
<testcase name="iSkipped" time="NaN">
<system-out>
<![CDATA[]]>
</system-out>
<system-out/>
<skipped/>
</testcase>
</testsuite>
8 changes: 2 additions & 6 deletions test/fixtures/test-out-xml-passing-append.txt
@@ -1,13 +1,9 @@
This is a test!
<testsuite name="citgm">
<testcase name="iPass-v4.2.2" time="0.05">
<system-out>
<![CDATA[]]>
</system-out>
<system-out/>
</testcase>
<testcase name="iFlakyPass-v3.0.1" time="0.05">
<system-out>
<![CDATA[ Thanks for testing!]]>
</system-out>
<system-out><![CDATA[ Thanks for testing!]]></system-out>
</testcase>
</testsuite>
8 changes: 2 additions & 6 deletions test/fixtures/test-out-xml-passing.txt
@@ -1,12 +1,8 @@
<testsuite name="citgm">
<testcase name="iPass-v4.2.2" time="0.05">
<system-out>
<![CDATA[]]>
</system-out>
<system-out/>
</testcase>
<testcase name="iFlakyPass-v3.0.1" time="0.05">
<system-out>
<![CDATA[ Thanks for testing!]]>
</system-out>
<system-out><![CDATA[ Thanks for testing!]]></system-out>
</testcase>
</testsuite>

0 comments on commit e7bcc45

Please sign in to comment.