I am very confused about how to tell Transporter and Selen from where I can apply for integration tests (Gulp runs on Jenkins).
This is my protractor configuration:
exports.config = { seleniumServerJar: '../node_modules/protractor/selenium/selenium-server-standalone-2.44.0.jar', multiCapabilities: [{ browserName: 'chrome' }], baseUrl: 'http://127.0.0.1:9000/', rootElement: 'html', jasmineNodeOpts: { showColors: true, defaultTimeoutInterval: 30000 } };
But here is the problem: http://127.0.0.1:9000 does not exist. Should I deploy first and then do integration tests or do it before deployment? Because, if the deployment should be performed in the first place, then it makes no sense to me where to put it in the build system. Because then this is not so and cannot be part of the assembly system. So where is the CI?
source share