From 121affa83f6d1116dc578f4d07ff35e0dcbf161f Mon Sep 17 00:00:00 2001 From: Vivek Date: Thu, 22 Oct 2020 16:10:13 +0530 Subject: [PATCH 1/2] PRO-17256: Update enum values for webBrowser --- CHANGELOG.md | 1 + src/utilities/DxPropertiesSchema.ts | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e38fb2c..619a5b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Support for Edge Chromium - Updated Enum for testOutputLevel and removed from schema to ignore validation +- Update Enum values for webBrowser ## [0.3.0] - 2020-09-11 diff --git a/src/utilities/DxPropertiesSchema.ts b/src/utilities/DxPropertiesSchema.ts index c90ef56..5d117c7 100644 --- a/src/utilities/DxPropertiesSchema.ts +++ b/src/utilities/DxPropertiesSchema.ts @@ -97,12 +97,12 @@ export const schema = { type: 'string', enum: [ 'Chrome', + 'SAFARI', 'Edge', + 'Edge_Chromium', 'Firefox', - 'SAFARI', 'IE', - 'Chrome_Headless', - 'Edge_Chromium' + 'Chrome_Headless' ] }, webBrowserConfig: { From a05581c60784c010ddcfcf00b384c8e3b5c52104 Mon Sep 17 00:00:00 2001 From: Vivek Date: Thu, 22 Oct 2020 16:13:08 +0530 Subject: [PATCH 2/2] PRO-17256: Updated Edge_Chromium value to Edge_Legacy --- src/utilities/DxPropertiesSchema.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utilities/DxPropertiesSchema.ts b/src/utilities/DxPropertiesSchema.ts index 5d117c7..6dd4045 100644 --- a/src/utilities/DxPropertiesSchema.ts +++ b/src/utilities/DxPropertiesSchema.ts @@ -99,7 +99,7 @@ export const schema = { 'Chrome', 'SAFARI', 'Edge', - 'Edge_Chromium', + 'Edge_Legacy', 'Firefox', 'IE', 'Chrome_Headless'