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.

24 lines
449 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. system: {
  13. plugins: {
  14. 'html-reporter': {
  15. enabled: true,
  16. path: geminiConfig.gemini.reports
  17. }
  18. }
  19. }
  20. };