I am tryin to integrate protractor e2e tests in my cruisecontrol I am using the following testspec:
describe('index', function () {
var ptor;
it('should have a title', function () {
browser.get('http://juliemr.github.io/protractor-demo/');
expect(browser.getTitle()).toEqual('Super Calculator');
});
it('Check google', function () {
browser.driver.get('http://www.google.com');
})
});
When I run this spec though the command line works fine. However when I run it as a nant target in the build config it says there is a timeout error:
31mtimeout: timed out after 30000 msec waiting for spec to complete
How can I get my protractor e2e tests goin though the cc.net ?