Advertisement
stronk7

Untitled

Jan 22nd, 2021
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.49 KB | None | 0 0
  1. $ cat vendor/bin/behat
  2. #!/usr/bin/env sh
  3. echo "WAITING 2 MINUTES TO CONTINUE"
  4. sleep 120
  5.  
  6. dir=$(cd "${0%[/\\]*}" > /dev/null; cd "../behat/behat/bin" && pwd)
  7.  
  8. if [ -d /proc/cygdrive ]; then
  9. case $(which php) in
  10. $(readlink -n /proc/cygdrive)/*)
  11. # We are in Cygwin using Windows php, so the path must be translated
  12. dir=$(cygpath -m "$dir");
  13. ;;
  14. esac
  15. fi
  16.  
  17. "${dir}/behat" "$@"
  18.  
  19.  
  20. stronk7@stronk7lenovo MINGW64 ~/git_moodle/integration (master)
  21. $ php admin/tool/behat/cli/init.php
  22. You are already using composer version 2.0.8 (stable channel).
  23. Installing dependencies from lock file (including require-dev)
  24. Verifying lock file contents can be installed on current platform.
  25. Nothing to install, update or remove
  26. Package container-interop/container-interop is abandoned, you should avoid using it. Use psr/container instead.
  27. Package phpunit/php-token-stream is abandoned, you should avoid using it. No replacement was suggested.
  28. Generating autoload files
  29. 43 packages you are using are looking for funding.
  30. Use the `composer fund` command to find out more!
  31.  
  32. In Selenium2Factory.php line 62:
  33.  
  34. Install MinkSelenium2Driver in order to use selenium2 driver.
  35.  
  36.  
  37. Error: Error running behat CLI command. Try running "vendor\bin\behat --help" manually from CLI to find out more about the problem.
  38.  
  39. Ensure you set $CFG->behat_* vars in config.php and you ran admin/tool/behat/cli/init.php.
  40. More info in https://docs.moodle.org/dev/Running_acceptance_test
  41.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement