Skip to content

Commit

Permalink
PRO-16514: ProvarDX | Add support for Chrome Headless (#19) (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
riteshnahar committed Jul 8, 2020
1 parent e52ab8a commit 1d4b472
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
9 changes: 8 additions & 1 deletion src/utilities/DxPropertiesSchema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 1d4b472

Please sign in to comment.