Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .jshintrc
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@
"trailing": true,
"smarttabs": true,
"globals": {
"angular": false
"angular": false,
"describe": false,
"protractor": false,
"it": false,
"beforeEach": false,
"expect": false
}
}
4 changes: 2 additions & 2 deletions test/protractor.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ exports.config = {
// 3. sauceUser/sauceKey - to use remote Selenium servers via SauceLabs.

// The location of the selenium standalone server .jar file.
seleniumServerJar: './selenium/selenium-server-standalone-2.37.0.jar',
seleniumServerJar: '../node_modules/protractor/selenium/selenium-server-standalone-2.39.0.jar',
// The port to start the selenium server on, or null if the server should
// find its own unused port.
seleniumPort: null,
// Chromedriver location is used to help the selenium standalone server
// find chromedriver. This will be passed to the selenium jar as
// the system property webdriver.chrome.driver. If null, selenium will
// attempt to find chromedriver using PATH.
chromeDriver: './selenium/chromedriver',
chromeDriver: '../node_modules/protractor/selenium/chromedriver',
// Additional command line options to pass to selenium. For example,
// if you need to change the browser timeout, use
// seleniumArgs: ['-browserTimeout=60'],
Expand Down