Skip to content

Adding support for CFR files #452

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 19, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions bin/helpers/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ const validationMessages = {
EMPTY_RUN_SETTINGS: "Empty run settings",
EMPTY_CYPRESS_PROJ_DIR:
"cypress_proj_dir is not set in run_settings. See https://www.browserstack.com/docs/automate/cypress/sample-tutorial to learn more.",
EMPTY_CYPRESS_CONFIG_FILE:
EMPTY_CYPRESS_CONFIG_FILE:
"cypress_config_file is not set in run_settings. See https://www.browserstack.com/docs/automate/cypress/configuration-file to learn more.",
VALIDATED: "browserstack.json file is validated",
NOT_VALID: "browerstack.json is not valid",
Expand All @@ -129,9 +129,9 @@ const validationMessages = {
INVALID_PARALLELS_CONFIGURATION:
"Invalid value specified for parallels to use. Maximum parallels to use should be a number greater than 0.",
INVALID_CYPRESS_CONFIG_FILE: "Invalid cypress_config_file",
CYPRESS_CONFIG_FILE_NOT_FOUND:
CYPRESS_CONFIG_FILE_NOT_FOUND:
"No cypress config file was found at <location> directory.",
MORE_THAN_ONE_CYPRESS_CONFIG_FILE_FOUND:
MORE_THAN_ONE_CYPRESS_CONFIG_FILE_FOUND:
"Cypress does not allow more than one cypress config file.",
INVALID_CYPRESS_JSON: "cypress.json is not a valid json",
INVALID_DEFAULT_AUTH_PARAMS:
Expand Down Expand Up @@ -309,7 +309,8 @@ const allowedFileTypes = [
"mjpeg",
"y4m",
"tsx",
"pfx"
"pfx",
"cfr",
];

const filesToIgnoreWhileUploading = [
Expand Down