diff --git a/CHANGELOG.md b/CHANGELOG.md index b5df89f..55baec6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.2.0] - 2020-07-08 + +### Added + +- Support for Chrome Headless + ## [0.1.0] - 2020-07-07 ### Added diff --git a/package.json b/package.json index 62b76cc..b6d84ad 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@provartesting/provardx", "description": "A plugin for the Salesforce CLI to run provar testcases", - "version": "0.1.0", + "version": "0.2.0", "author": "Provar", "bugs": "https://github.com/ProvarTesting/provardx/issues", "dependencies": { diff --git a/src/utilities/DxPropertiesSchema.ts b/src/utilities/DxPropertiesSchema.ts index 201489f..7a58503 100644 --- a/src/utilities/DxPropertiesSchema.ts +++ b/src/utilities/DxPropertiesSchema.ts @@ -96,7 +96,14 @@ export const schema = { webBrowser: { description: 'The web browser to be used for UI testing', type: 'string', - enum: ['Chrome', 'Edge', 'Firefox', 'SAFARI', 'IE'] + enum: [ + 'Chrome', + 'Edge', + 'Firefox', + 'SAFARI', + 'IE', + 'Chrome_Headless' + ] }, webBrowserConfig: { description: