I am using protractor for running e2e tests. I have a base config file and two other config files that override some options in the base config file. I want to be able to specify different configurations in the angular-cli.json for running e2e tests. As I can see it now, you can only specify one config file for e2e in angular-cli:
"e2e": {
"protractor": {
"config": "./protractor.conf.js"
}
}
How can you have multiple configurations defined that use different config files?