Ignore HtmlReporter's createElement and createTextNode options

Injected DOM wrappers were a nice idea in theory but everyone just passes
wrappers around document.createElement/document.createTextNode. That
includes HtmlReporter's unit tests and karma-jasmine-html-reporter, the
only known 5.x-compatible library that constructs an HtmlReporter.
This commit is contained in:
Steve Gravrock
2025-10-07 19:34:23 -07:00
parent 10ad40357a
commit de44e909f2
6 changed files with 46 additions and 346 deletions

View File

@@ -64,12 +64,6 @@
getContainer: function() {
return document.body;
},
createElement: function() {
return document.createElement.apply(document, arguments);
},
createTextNode: function() {
return document.createTextNode.apply(document, arguments);
},
timer: new jasmine.Timer(),
filterSpecs: filterSpecs
});