From 305a6a4126dfdcae57e052d90adb2b8432e85f28 Mon Sep 17 00:00:00 2001 From: Karan Shah Date: Thu, 10 Dec 2020 19:45:36 +0530 Subject: [PATCH] Bug fix for supporting new spec file types --- bin/helpers/constants.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/helpers/constants.js b/bin/helpers/constants.js index 7a873860..8c409689 100644 --- a/bin/helpers/constants.js +++ b/bin/helpers/constants.js @@ -118,7 +118,7 @@ const allowedFileTypes = ['js', 'json', 'txt', 'ts', 'feature', 'features', 'pdf const filesToIgnoreWhileUploading = ['**/node_modules/**', 'node_modules/**', 'package-lock.json', 'package.json', 'browserstack-package.json', 'tests.zip', 'cypress.json'] -const specFileTypes = ['js', 'ts', 'feature'] +const specFileTypes = ['js', 'ts', 'feature', 'jsx', 'coffee', 'cjsx']; const DEFAULT_CYPRESS_SPEC_PATH = "cypress/integration"