From 6c78868aacd1426c0a3d5ce7ee2443f03e3b47ec Mon Sep 17 00:00:00 2001 From: Peter Hedenskog Date: Thu, 25 May 2023 13:29:14 +0200 Subject: [PATCH] Add support for api.priority (#3859) --- lib/cli/cli.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/cli/cli.js b/lib/cli/cli.js index 6cbc300b3..6df0fd3ae 100644 --- a/lib/cli/cli.js +++ b/lib/cli/cli.js @@ -1840,6 +1840,11 @@ export async function parseCommandLine() { type: 'string', group: 'API' }) + .option('api.priority', { + type: 'integer', + describe: 'The priority of the test. Highest priority is 1.', + group: 'API' + }) .option('api.json', { describe: 'Output the result as JSON.', group: 'API'