summaryrefslogtreecommitdiff
path: root/benchmark/url/legacy-vs-whatwg-url-parse.js
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/url/legacy-vs-whatwg-url-parse.js')
-rw-r--r--benchmark/url/legacy-vs-whatwg-url-parse.js14
1 files changed, 1 insertions, 13 deletions
diff --git a/benchmark/url/legacy-vs-whatwg-url-parse.js b/benchmark/url/legacy-vs-whatwg-url-parse.js
index 64533e67e4..ec386b7b85 100644
--- a/benchmark/url/legacy-vs-whatwg-url-parse.js
+++ b/benchmark/url/legacy-vs-whatwg-url-parse.js
@@ -3,19 +3,7 @@ const common = require('../common.js');
const url = require('url');
const URL = url.URL;
const assert = require('assert');
-
-const inputs = {
- long: 'http://nodejs.org:89/docs/latest/api/url.html#test?' +
- 'payload1=true&payload2=false&test=1&benchmark=3&' +
- 'foo=38.38.011.293&bar=1234834910480&test=19299&3992&' +
- 'key=f5c65e1e98fe07e648249ad41e1cfdb0',
- short: 'https://nodejs.org/en/blog/',
- idn: 'http://你好你好',
- auth: 'https://user:pass@example.com/path?search=1',
- special: 'file:///foo/bar/test/node.js',
- percent: 'https://%E4%BD%A0/foo',
- dot: 'https://example.org/./a/../b/./c'
-};
+const inputs = require('../fixtures/url-inputs.js').urls;
const bench = common.createBenchmark(main, {
type: Object.keys(inputs),