Skip to content

Commit ebcddda

Browse files
committed
giving description of --no-wrap in bstack run --help
1 parent a04bfff commit ebcddda

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

bin/helpers/constants.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,8 @@ const cliMessages = {
104104
LOCAL: "Accepted values: (true | false) - create a local testing connection to let you test staging and localhost websites, or sites behind proxies; learn more at browserstack.com/local-testing",
105105
LOCAL_MODE: 'Accepted values: ("always-on" | "on-demand") - if you choose to keep the binary "always-on", it will speed up your tests by keeping the Local connection warmed up in the background; otherwise, you can choose to have it spawn and killed for every build',
106106
LOCAL_IDENTIFIER: "Accepted values: String - assign an identifier to your Local process instance",
107-
LOCAL_CONFIG_FILE: "Accepted values: String - path to local config-file to your Local process instance. Learn more at https://www.browserstack.com/local-testing/binary-params"
107+
LOCAL_CONFIG_FILE: "Accepted values: String - path to local config-file to your Local process instance. Learn more at https://www.browserstack.com/local-testing/binary-params",
108+
NO_WRAP: "Wrap the spec names in --sync mode in case of smaller terminal window size pass --no-wrap"
108109
},
109110
COMMON: {
110111
DISABLE_USAGE_REPORTING: "Disable usage reporting",

bin/runner.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,9 @@ var argv = yargs
221221
'local-config-file': {
222222
describe: Constants.cliMessages.RUN.LOCAL_CONFIG_FILE,
223223
type: "string"
224+
},
225+
'no-wrap': {
226+
describe: Constants.cliMessages.RUN.NO_WRAP
224227
}
225228
})
226229
.help('help')

0 commit comments

Comments
 (0)