From d1f8a96303fb5d8a945161579d61dec3ab960eb2 Mon Sep 17 00:00:00 2001 From: Issack John Date: Mon, 14 Apr 2025 10:51:46 -0700 Subject: [PATCH] update browser options in help text to include 'edge' --- tests/run.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/run.mjs b/tests/run.mjs index 17ce975..205a65f 100644 --- a/tests/run.mjs +++ b/tests/run.mjs @@ -6,7 +6,7 @@ import commandLineArgs from "command-line-args"; import commandLineUsage from "command-line-usage"; const optionDefinitions = [ - { name: "browser", type: String, description: "Set the browser to test, choices are [safari, firefox, chrome]. By default the $BROWSER env variable is used." }, + { name: "browser", type: String, description: "Set the browser to test, choices are [safari, firefox, chrome, edge]. By default the $BROWSER env variable is used." }, { name: "port", type: Number, defaultValue: 8010, description: "Set the test-server port, The default value is 8010." }, { name: "help", alias: "h", description: "Print this help text." }, ];