codecept.json 325 B

123456789101112131415161718
  1. {
  2. "tests": "./*_test.js",
  3. "timeout": 10000,
  4. "output": "./output",
  5. "helpers": {
  6. "WebDriverIO": {
  7. "url": "http://node:9001/tests/pages/",
  8. "browser": "firefox",
  9. "host": "firefox"
  10. }
  11. },
  12. "include": {
  13. "I": "./steps_file.js"
  14. },
  15. "bootstrap": false,
  16. "mocha": {},
  17. "name": "codeceptjs"
  18. }