Skip to content

Commit

Permalink
Merge pull request #35 from ProvarTesting/development
Browse files Browse the repository at this point in the history
Merge development into master for Release 0.3.1
  • Loading branch information
ProvarTesting committed Nov 20, 2020
2 parents 50bdcbe + fcc1dec commit 648fed3
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ 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.3.1] - 2020-11-20

### Added

- 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

### Fixed
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.3.0",
"version": "0.3.1",
"author": "Provar",
"bugs": "https://github.com/ProvarTesting/provardx/issues",
"dependencies": {
Expand Down
6 changes: 3 additions & 3 deletions src/utilities/DxPropertiesSchema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,7 @@ export const schema = {
testOutputLevel: {
description:
'Controls the amount of test output logged to the DX test log.',
type: 'string',
enum: ['SEVERE', 'WARNING', 'INFO', 'FINE', 'FINER', 'FINEST']
type: 'string'
},
pluginOutputlevel: {
description:
Expand Down Expand Up @@ -98,9 +97,10 @@ export const schema = {
type: 'string',
enum: [
'Chrome',
'SAFARI',
'Edge',
'Edge_Legacy',
'Firefox',
'SAFARI',
'IE',
'Chrome_Headless'
]
Expand Down

0 comments on commit 648fed3

Please sign in to comment.