Docs: Fix HtmlReporterV2 ctor example

This commit is contained in:
Steve Gravrock
2025-10-22 16:36:39 -07:00
parent 020dffd504
commit 6667a42301
2 changed files with 2 additions and 2 deletions

View File

@@ -958,7 +958,7 @@ jasmineRequire.HtmlReporterV2 = function(j$) {
* const reporter = new jasmine.HtmlReporterV2({ * const reporter = new jasmine.HtmlReporterV2({
* env, * env,
* urls, * urls,
* container: document.body * getContainer: () => document.body
* }); * });
*/ */
class HtmlReporterV2 { class HtmlReporterV2 {

View File

@@ -15,7 +15,7 @@ jasmineRequire.HtmlReporterV2 = function(j$) {
* const reporter = new jasmine.HtmlReporterV2({ * const reporter = new jasmine.HtmlReporterV2({
* env, * env,
* urls, * urls,
* container: document.body * getContainer: () => document.body
* }); * });
*/ */
class HtmlReporterV2 { class HtmlReporterV2 {