mirror of
https://github.com/zebrajr/node.git
synced 2025-12-06 12:20:27 +01:00
"bechmark" -> "benchmark" in test-benchmark-readline.js. And fix test name in test-benchmark-validators.js. PR-URL: https://github.com/nodejs/node/pull/59993 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
10 lines
250 B
JavaScript
10 lines
250 B
JavaScript
'use strict';
|
|
|
|
require('../common');
|
|
|
|
// Minimal test for validators benchmarks. This makes sure the benchmarks aren't
|
|
// completely broken but nothing more than that.
|
|
const runBenchmark = require('../common/benchmark');
|
|
|
|
runBenchmark('validators');
|