feat(build): add a grunt test for running protractor tests extracted from the docs

This commit is contained in:
Julie
2014-01-07 11:51:32 -08:00
committed by Jeff Cross
parent 1d2a388830
commit 2ed4ad5502
7 changed files with 73 additions and 1 deletions

19
protractor-conf.js Normal file
View File

@@ -0,0 +1,19 @@
exports.config = {
allScriptsTimeout: 11000,
specs: [
'build/docs/ptore2e/**/*.js',
],
capabilities: {
'browserName': 'chrome'
},
baseUrl: 'http://localhost:8000/build/docs/',
framework: 'jasmine',
jasmineNodeOpts: {
defaultTimeoutInterval: 30000
}
};