test: add tests of querystring benchmark

PR-URL: https://github.com/nodejs/node/pull/16052
Reviewed-By: Evan Lucas <evanlucas@me.com>
Reviewed-By: Timothy Gu <timothygu99@gmail.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
This commit is contained in:
Jonathan Eskew
2017-10-06 13:31:56 -07:00
committed by Joyee Cheung
parent e14fd570fd
commit ee587f39ae

View File

@@ -0,0 +1,11 @@
'use strict';
require('../common');
const runBenchmark = require('../common/benchmark');
runBenchmark('querystring', [
'n=1',
'input="there is nothing to unescape here"',
'type=noencode'
]);