Skip to content

Instantly share code, notes, and snippets.

@chyld
Last active August 29, 2015 13:57
Show Gist options
  • Save chyld/9585177 to your computer and use it in GitHub Desktop.
Save chyld/9585177 to your computer and use it in GitHub Desktop.
install java
sudo npm install -g protractor
sudo webdriver-manager update
touch root/test/protractor.conf.js
exports.config = {
specs: [
'./e2e/**/*.spec.js'
],
baseUrl: 'http://localhost:4000'
};
mkdir root/test/e2e
to run:
protractor test/protractor.conf.js
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment