commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-new / civicrm / bower_components / angular-unsavedChanges / protractor_travis.conf.js
1 // A reference configuration file.
2 exports.config = {
3 // ----- How to setup Selenium -----
4 //
5 // There are three ways to specify how to use Selenium. Specify one of the
6 // following:
7 //
8 // 1. seleniumServerJar - to start Selenium Standalone locally.
9 // 2. seleniumAddress - to connect to a Selenium server which is already
10 // running.
11 // 3. sauceUser/sauceKey - to use remote Selenium servers via SauceLabs.
12
13 seleniumAddress: 'http://facultymatt:b280b942-1965-446d-90bf-e069b5cd2cf9@localhost:4445/wd/hub',
14 // The port to start the selenium server on, or null if the server should
15 // find its own unused port.
16 seleniumPort: null,
17 // Chromedriver location is used to help the selenium standalone server
18 // find chromedriver. This will be passed to the selenium jar as
19 // the system property webdriver.chrome.driver. If null, selenium will
20 // attempt to find chromedriver using PATH.
21 //chromeDriver: './selenium/chromedriver',
22 // Additional command line options to pass to selenium. For example,
23 // if you need to change the browser timeout, use
24 // seleniumArgs: ['-browserTimeout=60'],
25 seleniumArgs: [],
26
27 // If sauceUser and sauceKey are specified, seleniumServerJar will be ignored.
28 // The tests will be run remotely using SauceLabs.
29 sauceUser: 'facultymatt',
30 sauceKey: 'b280b942-1965-446d-90bf-e069b5cd2cf9',
31
32 // ----- What tests to run -----
33 //
34 // Spec patterns are relative to the location of this config.
35 specs: [
36 'e2e/*.js'
37 ],
38
39 // ----- Capabilities to be passed to the webdriver instance ----
40 //
41 // For a full list of available capabilities, see
42 // https://code.google.com/p/selenium/wiki/DesiredCapabilities
43 // and
44 // https://code.google.com/p/selenium/source/browse/javascript/webdriver/capabilities.js
45 capabilities: {
46 'username': 'facultymatt',
47 'accessKey': 'b280b942-1965-446d-90bf-e069b5cd2cf9',
48 'browserName': 'chrome',
49 'tunnelIdentifier': process.env.TRAVIS_JOB_NUMBER
50 //'version': '7',
51 //'platform': 'XP'
52 },
53
54 // A base URL for your application under test. Calls to protractor.get()
55 // with relative paths will be prepended with this.
56 baseUrl: 'http://localhost:9999',
57
58 // Selector for the element housing the angular app - this defaults to
59 // body, but is necessary if ng-app is on a descendant of <body>
60 rootElement: 'body',
61
62 // ----- Options to be passed to minijasminenode -----
63 jasmineNodeOpts: {
64 // onComplete will be called just before the driver quits.
65 onComplete: null,
66 // If true, display spec names.
67 isVerbose: false,
68 // If true, print colors to the terminal.
69 showColors: true,
70 // If true, include stack traces in failures.
71 includeStackTrace: true,
72 // Default time to wait in ms before a test fails.
73 defaultTimeoutInterval: 1000000
74 }
75 };