This reduces the runtime and makes sure the strict and loose options can be tested individually. Besides that a couple of redundant cases were removed. PR-URL: https://github.com/nodejs/node/pull/22211 Reviewed-By: Anatoli Papirovski <apapirovski@mac.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
20 lines
335 B
JavaScript
20 lines
335 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common.js');
|
|
const assert = require('assert');
|
|
|
|
const bench = common.createBenchmark(main, {
|
|
n: [1e5]
|
|
});
|
|
|
|
function main({ n }) {
|
|
var i;
|
|
bench.start();
|
|
for (i = 0; i < n; ++i) {
|
|
if (i % 2 === 0)
|
|
assert(true);
|
|
else
|
|
assert(true, 'foo bar baz');
|
|
}
|
|
bench.end(n);
|
|
}
|