I wanted to run my protractor tests on the same port without changing the port number. I tried :
"e2e": "ng e2e --port 49152 --host localhost",
in the package.jason
file and also
"e2e": {
"options": {
"port": 49152
}
in the angular.json
file but both didn't work for me. Is there any possible way to make protractor tests run in the same port?