Issue #3217355 by Wim Leers, Mixologic, longwave: Set skip_testcases_on_fail:false in nightwatch.conf.js

merge-requests/1273/head
catch 2021-09-29 15:46:16 +01:00
parent fa03e38bb3
commit 94acb91065
2 changed files with 5 additions and 0 deletions

View File

@ -24,6 +24,9 @@ exports.command = function drupalInstall(
) {
const self = this;
// Ensure no session cookie exists anymore; they won't work on this newly installed Drupal site anyway.
this.deleteCookies();
try {
setupFile = setupFile ? `--setup-file "${setupFile}"` : '';
installProfile = `--install-profile "${installProfile}"`;

View File

@ -76,6 +76,7 @@ module.exports = {
path: `${process.env.DRUPAL_NIGHTWATCH_OUTPUT}/screenshots`,
},
end_session_on_fail: false,
skip_testcases_on_fail: false,
},
local: {
webdriver: {
@ -100,6 +101,7 @@ module.exports = {
path: `${process.env.DRUPAL_NIGHTWATCH_OUTPUT}/screenshots`,
},
end_session_on_fail: false,
skip_testcases_on_fail: false,
},
},
};