You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* var stdout = require( '@stdlib/streams/node/stdout' );
465
469
*
466
-
* var harness = bench.createHarness();
470
+
* var harness = main.createHarness();
467
471
* var stream = harness.createStream();
468
472
*
469
473
* // Direct all results to `stdout`:
@@ -496,7 +500,7 @@ interface Harness {
496
500
* @example
497
501
* var stdout = require( '@stdlib/streams/node/stdout' );
498
502
*
499
-
* var harness = bench.createHarness();
503
+
* var harness = main.createHarness();
500
504
*
501
505
* var stream = harness.createStream();
502
506
* stream.pipe( stdout );
@@ -540,7 +544,7 @@ interface Harness {
540
544
* @example
541
545
* var stdout = require( '@stdlib/streams/node/stdout' );
542
546
*
543
-
* var harness = bench.createHarness();
547
+
* var harness = main.createHarness();
544
548
*
545
549
* var stream = harness.createStream();
546
550
* stream.pipe( stdout );
@@ -577,7 +581,7 @@ interface Harness {
577
581
* **Read-only** property whose value is the harness exit code. If all benchmarks run successfully (i.e., no failing assertions), the exit code is `0`; otherwise, the exit code is `1`.
578
582
*
579
583
* @example
580
-
* var harness = bench.createHarness();
584
+
* var harness = main.createHarness();
581
585
*
582
586
* // Benchmarks only start running when results have a destination:
0 commit comments