diff --git a/src/cli/run.ts b/src/cli/run.ts index d0ecfbd..7a9ef35 100644 --- a/src/cli/run.ts +++ b/src/cli/run.ts @@ -15,9 +15,6 @@ import {consoleLog} from "../utils/output.js"; export async function run(opts_: FileCollectionOptions & StorageOptions & BenchmarkOpts): Promise { const opts = Object.assign({}, optionsDefault, opts_); - // Sanitize opts - if (isNaN(opts.threshold)) throw Error("opts.threshold is not a number"); - // Retrieve history const historyProvider = getHistoryProvider(opts); consoleLog(`Connected to historyProvider: ${historyProvider.providerInfo()}`);