Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
artemgurzhii committed Mar 15, 2021
1 parent 088dd0f commit 4e31ec5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -49,7 +49,7 @@
"styled_string": "0.0.1",
"tap-parser": "^7.0.0",
"tmp": "0.0.33",
"xmldom": "^0.1.19"
"xmldom": "^0.5.0"
},
"files": [
"lib",
Expand Down
4 changes: 2 additions & 2 deletions tests/ci/reporter_tests.js
Expand Up @@ -768,7 +768,7 @@ describe('test reporters', function() {
reporter.finish();
var output = stream.read().toString();
assert.match(output, /<testsuite name="Testem Tests" tests="1" skipped="0" failures="0" timestamp="(.+)" time="(\d+(\.\d+)?)">/);
assert.match(output, /<testcase classname="phantomjs" name="it does &lt;cool> &quot;cool&quot; 'cool' stuff"/);
assert.match(output, /<testcase classname="phantomjs" name="it does <cool> &quot;cool&quot; 'cool' stuff" time="0"\/>/);

assertXmlIsValid(output);
});
Expand Down Expand Up @@ -950,7 +950,7 @@ describe('test reporters', function() {
reporter.finish();
var output = stream.read().toString();
assert.match(output, /it failed with quotes"/);
assert.match(output, /&lt;it> &quot;crapped&quot; out/);
assert.match(output, /<it> &quot;crapped&quot; out/);

assertXmlIsValid(output);
});
Expand Down

0 comments on commit 4e31ec5

Please sign in to comment.