Skip to content

Commit

Permalink
Merge pull request mathquill#1030 from desmosinc/fix-unit-test-merge
Browse files Browse the repository at this point in the history
Fix merge issues in unit.html
  • Loading branch information
jwmerrill authored Oct 2, 2023
2 parents e9217d1 + fd70d29 commit ca30110
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/unit.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

mocha.setup({
ui: 'tdd',
reporter: outputXunit ? 'xunit' : 'html'
reporter: outputXunit ? 'xunit' : 'html',
bail: false
});
</script>
Expand Down Expand Up @@ -58,6 +58,9 @@ <h1>Unit Tests</h1>
teardown(function() { $('#mock').empty(); });

function runXUnit() {
var xunit = '';
Mocha.process.stdout.write = function(line) { xunit += line; };

var runner = mocha.run();
runner.on('end', function() {
setTimeout(function() {
Expand Down

0 comments on commit ca30110

Please sign in to comment.