diff --git a/test/parallel/test-benchmark-assert.js b/test/parallel/test-benchmark-assert.js new file mode 100644 index 00000000000000..a83bbf8ad8cf41 --- /dev/null +++ b/test/parallel/test-benchmark-assert.js @@ -0,0 +1,12 @@ +'use strict'; + +require('../common'); + +// Minimal test for assert benchmarks. This makes sure the benchmarks aren't +// completely broken but nothing more than that. + +const runBenchmark = require('../common/benchmark'); + +runBenchmark( + 'assert', ['len=1', 'method=', 'n=1', 'prim=null', 'size=1', 'type=Int8Array'] +);