vis.js is a dynamic, browser-based visualization library
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
784 B

  1. var geminiConfig = require('./test/gemini/gemini.config.js');
  2. module.exports = {
  3. rootUrl: 'http://localhost' + ':' + geminiConfig.webserver.port,
  4. screenshotsDir: geminiConfig.gemini.screens,
  5. browsers: {
  6. PhantomJS: {
  7. desiredCapabilities: {
  8. browserName: "phantomjs"
  9. }
  10. },
  11. /*
  12. chrome: {
  13. desiredCapabilities: {
  14. browserName: 'chrome',
  15. chromeOptions: {
  16. args: ["disable-gpu", "no-sandbox"]
  17. }
  18. }
  19. }
  20. */
  21. /*
  22. firefox: {
  23. desiredCapabilities: {
  24. browserName: "firefox"
  25. version: "47.0"
  26. }
  27. }
  28. */
  29. },
  30. system: {
  31. parallelLimit: 3,
  32. plugins: {
  33. 'html-reporter': {
  34. enabled: true,
  35. path: geminiConfig.gemini.reports
  36. }
  37. }
  38. }
  39. };