Commit 94acb910 authored by catch's avatar catch
Browse files

Issue #3217355 by Wim Leers, Mixologic, longwave: Set...

Issue #3217355 by Wim Leers, Mixologic, longwave: Set skip_testcases_on_fail:false in nightwatch.conf.js
parent fa03e38b
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -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}"`;
+2 −0
Original line number Diff line number Diff line
@@ -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,
    },
  },
};