Flesh out jasmine-html.js API reference

This commit is contained in:
Steve Gravrock
2025-10-15 21:50:56 -07:00
parent 2352249441
commit b6426d2414
5 changed files with 54 additions and 10 deletions

View File

@@ -7,8 +7,16 @@ jasmineRequire.HtmlReporterV2 = function(j$) {
* @class HtmlReporterV2
* @classdesc Displays results and allows re-running individual specs and suites.
* @implements {Reporter}
* @param options Options object. See lib/jasmine-core/boot1.js for details.
* @param options Options object
* @since 6.0.0
* @example
* const env = jasmine.getEnv();
* const urls = new jasmine.HtmlReporterV2Urls();
* const reporter = new jasmine.HtmlReporterV2({
* env,
* urls,
* container: document.body
* });
*/
class HtmlReporterV2 {
#env;