diff options
author | 2022-05-03 02:35:05 -0700 | |
---|---|---|
committer | 2022-05-03 02:35:05 -0700 | |
commit | e3362a0fdad959a1fe6b87b9449d7aaee2b7175e (patch) | |
tree | 4b0fef71ea31e1cb787bebf4ca67188687eb79bb /bench/ffi/plus100/plus100.napi.mjs | |
parent | f0fdda567868124f18e8a54651a7e2a12cd06d4d (diff) | |
download | bun-e3362a0fdad959a1fe6b87b9449d7aaee2b7175e.tar.gz bun-e3362a0fdad959a1fe6b87b9449d7aaee2b7175e.tar.zst bun-e3362a0fdad959a1fe6b87b9449d7aaee2b7175e.zip |
clarify
Diffstat (limited to 'bench/ffi/plus100/plus100.napi.mjs')
-rw-r--r-- | bench/ffi/plus100/plus100.napi.mjs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bench/ffi/plus100/plus100.napi.mjs b/bench/ffi/plus100/plus100.napi.mjs index aa8d2636f..2b3015933 100644 --- a/bench/ffi/plus100/plus100.napi.mjs +++ b/bench/ffi/plus100/plus100.napi.mjs @@ -14,3 +14,7 @@ bench("noop() ", () => { }); await run({ collect: false, percentiles: true }); console.log("\n"); + +if (plus100(1) !== 101) { + throw new Error("plus100(1) !== 101"); +} |