summaryrefslogtreecommitdiffstats
path: root/fastify-busboy/benchmarks/busboy/validator.js
diff options
context:
space:
mode:
Diffstat (limited to 'fastify-busboy/benchmarks/busboy/validator.js')
-rw-r--r--fastify-busboy/benchmarks/busboy/validator.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/fastify-busboy/benchmarks/busboy/validator.js b/fastify-busboy/benchmarks/busboy/validator.js
new file mode 100644
index 0000000..a86cc33
--- /dev/null
+++ b/fastify-busboy/benchmarks/busboy/validator.js
@@ -0,0 +1,15 @@
+'use strict'
+
+const { validateEqual } = require('validation-utils')
+const { randomContent } = require('./data')
+
+const EXPECTED_RESULT = randomContent.toString()
+
+async function validateAccuracy (actualResultPromise) {
+ const result = await actualResultPromise
+ validateEqual(result, EXPECTED_RESULT)
+}
+
+module.exports = {
+ validateAccuracy
+}