1
0
Fork 0

added skipSsl to defaults

This commit is contained in:
Frank Celler 2016-02-06 00:56:04 +01:00
parent 6a6e2f212c
commit 50b2c499e7
1 changed files with 2 additions and 1 deletions

View File

@ -129,6 +129,7 @@ const optionsDefaults = {
"skipNightly": true, "skipNightly": true,
"skipNondeterministic": false, "skipNondeterministic": false,
"skipRanges": false, "skipRanges": false,
"skipSsl": false,
"skipTimeCritical": false, "skipTimeCritical": false,
"test": undefined, "test": undefined,
"username": "root", "username": "root",
@ -2908,7 +2909,7 @@ testFuncs.single_server = function(options) {
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
testFuncs.ssl_server = function(options) { testFuncs.ssl_server = function(options) {
if (options.hasOwnProperty('skipSsl')) { if (options.skipSsl) {
return { return {
ssl_server: { ssl_server: {
status: true, status: true,