Skip to content

Commit 648fed3

Browse files
Merge pull request #35 from ProvarTesting/development
Merge development into master for Release 0.3.1
2 parents 50bdcbe + fcc1dec commit 648fed3

3 files changed

Lines changed: 12 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.3.1] - 2020-11-20
9+
10+
### Added
11+
12+
- Support for Edge Chromium
13+
- Updated Enum for testOutputLevel and removed from schema to ignore validation
14+
- Update Enum values for webBrowser
15+
816
## [0.3.0] - 2020-09-11
917

1018
### Fixed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@provartesting/provardx",
33
"description": "A plugin for the Salesforce CLI to run provar testcases",
4-
"version": "0.3.0",
4+
"version": "0.3.1",
55
"author": "Provar",
66
"bugs": "https://github.com/ProvarTesting/provardx/issues",
77
"dependencies": {

src/utilities/DxPropertiesSchema.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,7 @@ export const schema = {
4040
testOutputLevel: {
4141
description:
4242
'Controls the amount of test output logged to the DX test log.',
43-
type: 'string',
44-
enum: ['SEVERE', 'WARNING', 'INFO', 'FINE', 'FINER', 'FINEST']
43+
type: 'string'
4544
},
4645
pluginOutputlevel: {
4746
description:
@@ -98,9 +97,10 @@ export const schema = {
9897
type: 'string',
9998
enum: [
10099
'Chrome',
100+
'SAFARI',
101101
'Edge',
102+
'Edge_Legacy',
102103
'Firefox',
103-
'SAFARI',
104104
'IE',
105105
'Chrome_Headless'
106106
]

0 commit comments

Comments
 (0)