Skip to content

Commit 3383f10

Browse files
Merge branch 'master' into AFD-1532-null-check-while-updating-progress-bar
2 parents 6799df3 + f14755b commit 3383f10

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

bin/helpers/constants.js

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ const validationMessages = {
122122
EMPTY_RUN_SETTINGS: "Empty run settings",
123123
EMPTY_CYPRESS_PROJ_DIR:
124124
"cypress_proj_dir is not set in run_settings. See https://www.browserstack.com/docs/automate/cypress/sample-tutorial to learn more.",
125-
EMPTY_CYPRESS_CONFIG_FILE:
125+
EMPTY_CYPRESS_CONFIG_FILE:
126126
"cypress_config_file is not set in run_settings. See https://www.browserstack.com/docs/automate/cypress/configuration-file to learn more.",
127127
VALIDATED: "browserstack.json file is validated",
128128
NOT_VALID: "browerstack.json is not valid",
@@ -131,9 +131,9 @@ const validationMessages = {
131131
INVALID_PARALLELS_CONFIGURATION:
132132
"Invalid value specified for parallels to use. Maximum parallels to use should be a number greater than 0.",
133133
INVALID_CYPRESS_CONFIG_FILE: "Invalid cypress_config_file",
134-
CYPRESS_CONFIG_FILE_NOT_FOUND:
134+
CYPRESS_CONFIG_FILE_NOT_FOUND:
135135
"No cypress config file was found at <location> directory.",
136-
MORE_THAN_ONE_CYPRESS_CONFIG_FILE_FOUND:
136+
MORE_THAN_ONE_CYPRESS_CONFIG_FILE_FOUND:
137137
"Cypress does not allow more than one cypress config file.",
138138
INVALID_CYPRESS_JSON: "cypress.json is not a valid json",
139139
INVALID_DEFAULT_AUTH_PARAMS:
@@ -311,16 +311,21 @@ const allowedFileTypes = [
311311
"mjpeg",
312312
"y4m",
313313
"tsx",
314-
"pfx"
314+
"pfx",
315+
"cfr",
315316
];
316317

317318
const filesToIgnoreWhileUploading = [
318319
"**/node_modules/**",
319320
"node_modules/**",
320321
"package-lock.json",
322+
"**/package-lock.json",
321323
"package.json",
324+
"**/package.json",
322325
"browserstack-package.json",
326+
"**/browserstack-package.json",
323327
"tests.zip",
328+
"**/tests.zip",
324329
"cypress.json",
325330
"cypress.config.js",
326331
"cypress.config.ts",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "browserstack-cypress-cli",
3-
"version": "1.19.2",
3+
"version": "1.19.3",
44
"description": "BrowserStack Cypress CLI for Cypress integration with BrowserStack's remote devices.",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)