Added boilerplate for running end-to-end tests.\nThis is done using Protractor, which looks for a .gitignored file environment-protractor.js which contains the selenium endpoint url.

This commit is contained in:
Kegan Dougal 2014-09-22 14:29:12 +01:00
parent e68dc04900
commit e3152188ef
5 changed files with 30 additions and 6 deletions

View file

@ -0,0 +1,6 @@
var env = require("./environment-protractor.js");
exports.config = {
seleniumAddress: env.seleniumAddress,
specs: ['e2e/*.spec.js']
}