Commit fa046526 authored by Tasneem Natshah's avatar Tasneem Natshah
Browse files

Issue #3313165: Using webship-js commands to read step-definitions js files

parents 9c5f8733 466cfced
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
<<<<<<< HEAD
# Cucumber UI

The Cucumber UI module lets any person to run automated tests and create new tests
@@ -59,3 +60,6 @@ Check the module on [Drupal.org](https://www.drupal.org/project/behat_ui).
* [Vardot](http://www.vardot.com).
* [Webship](http://webship.org).
* [Meedan](http://meedan.org).
=======
# Cucumber UI
>>>>>>> 466cfcedbb1829601a135386b5da1c192e5c36c2
+8 −0
Original line number Diff line number Diff line
config_path: "."
bin_path: "php ./bin/cucumber"
<<<<<<< HEAD
config_file: "cucumber.yml"
features_path: "tests/features"
autoload_path: "../../../vendor/autoload.php"
=======
config_file: "nightwatch.conf.js"
features_path: "tests/features"
>>>>>>> 466cfcedbb1829601a135386b5da1c192e5c36c2
html_report: true
html_report_dir: "tests/reports"
log_report_dir: "tests/logs"
editing_mode: "free_text"
<<<<<<< HEAD
http_user: ""
http_password: ""
=======
>>>>>>> 466cfcedbb1829601a135386b5da1c192e5c36c2
http_auth_headless_only: true
save_user_testing_features: false
needs_browser: true
+6 −0
Original line number Diff line number Diff line
@@ -14,9 +14,12 @@ cucumber_ui.settings:
    features_path:
      type: string
      label: "Cucumber Features path"
<<<<<<< HEAD
    autoload_path:
      type: string
      label: "Vendor autoload path"
=======
>>>>>>> 466cfcedbb1829601a135386b5da1c192e5c36c2
    html_report:
      type: boolean
      label: "Enable HTML report"
@@ -29,12 +32,15 @@ cucumber_ui.settings:
    editing_mode:
      type: string
      label: "Editing mode"
<<<<<<< HEAD
    http_user:
      type: string
      label: "HTTP Authentication User"
    http_password:
      type: string
      label: "HTTP Authentication Password"
=======
>>>>>>> 466cfcedbb1829601a135386b5da1c192e5c36c2
    http_auth_headless_only:
      type: boolean
      label: "HTTP authentication only"
+9 −0
Original line number Diff line number Diff line
<<<<<<< HEAD
name: "cucumber UI"
description: "Create and run cucumber/Mink tests from the web interface"
type: module
configure: cucumber_ui.settings
core_version_requirement: ^9 || ^10
dependencies: []
=======
name: "Cucumber UI"
description: "Create and run Cucumber/Mink tests from the web interface"
type: module
configure: cucumber_ui.settings
core_version_requirement: ^9 || ^10
dependencies: []
>>>>>>> 466cfcedbb1829601a135386b5da1c192e5c36c2
+4 −0
Original line number Diff line number Diff line
@@ -9,7 +9,11 @@
 * Implements hook_install().
 */
function cucumber_ui_install() {
<<<<<<< HEAD
  $install_message = t("Automated tests using cucumber/Mink, Run tests, and create tests under Administration -> Configuration -> Development -> cucumber UI");
=======
  $install_message = t("Automated tests using Cucumber/Mink, Run tests, and create tests under Administration -> Configuration -> Development -> Cucumber UI");
>>>>>>> 466cfcedbb1829601a135386b5da1c192e5c36c2
  \Drupal::logger('cucumber_ui')->notice($install_message);
  \Drupal::messenger()->addWarning($install_message);
}
Loading