// An example configuration file. exports.config = { // The address of a running selenium server. seleniumAddress: 'http://localhost:4444/wd/hub', // Capabilities to be passed to the webdriver instance. capabilities: { 'browserName': 'firefox' }, // Spec patterns are relative to the current working directly when // protractor is called. specs: ['test/e2e/e2e.js'], // A base URL for your application under test. Calls to protractor.get() // with relative paths will be prepended with this. baseUrl: 'http://localhost:3003', // Options to be passed to Jasmine-node. jasmineNodeOpts: { showColors: true, defaultTimeoutInterval: 90000, isVerbose: true, displayPendingSpec: true } };