File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 1717 "version" : {
1818 "Major" : 2 ,
1919 "Minor" : 3 ,
20- "Patch" : 6
20+ "Patch" : 7
2121 },
2222 "demands" : [
2323 " vstest"
Original file line number Diff line number Diff line change 1717 "version" : {
1818 "Major" : 2 ,
1919 "Minor" : 3 ,
20- "Patch" : 6
20+ "Patch" : 7
2121 },
2222 "demands" : [
2323 " vstest"
Original file line number Diff line number Diff line change @@ -69,11 +69,12 @@ export function startTest() {
6969 task : 'VsTestConsoleFlow' ,
7070 runInParallel : vstestConfig . runInParallel ,
7171 result : 'Failed' ,
72- settingsType : ! utils . Helper . isNullOrUndefined ( vstestConfig . settingsFile ) ? vstestConfig . settingsFile . endsWith ( '.runsettings' ) ? 'runsettings' : vstestConfig . settingsFile . endsWith ( '.testsettings' ) ? 'testsettings' : 'none' : 'none' ,
72+ settingsType : ! utils . Helper . isNullOrUndefined ( vstestConfig . settingsFile ) ? vstestConfig . settingsFile . endsWith ( '.runsettings' ) ? 'runsettings' : vstestConfig . settingsFile . endsWith ( '.testsettings' ) ? 'testsettings' : 'none' : 'none' ,
7373 testSelection : vstestConfig . testSelection ,
7474 tiaEnabled : vstestConfig . tiaConfig . tiaEnabled ,
7575 vsTestVersion : vstestConfig . vsTestVersionDetails . majorVersion + '.' + vstestConfig . vsTestVersionDetails . minorversion + '.' + vstestConfig . vsTestVersionDetails . patchNumber ,
76- consoleOptionsEnabled : ! utils . Helper . isNullOrWhitespace ( vstestConfig . otherConsoleOptions ) ? 'true' : 'false'
76+ consoleOptionsEnabled :
77+ ! utils . Helper . isNullOrWhitespace ( vstestConfig . otherConsoleOptions ) ? vstestConfig . otherConsoleOptions : ''
7778 } ;
7879
7980 invokeVSTest ( ) . then ( function ( taskResult ) {
You can’t perform that action at this time.
0 commit comments