Don't point at localhost
parent
569a53df27
commit
483ce15216
Binary file not shown.
|
@ -108,13 +108,13 @@
|
||||||
|
|
||||||
$http({
|
$http({
|
||||||
method: 'GET',
|
method: 'GET',
|
||||||
url: 'http://localhost:3001/browserstack_php.php' + '?' + queryParams1.join('&')
|
url: '/browserstack_php.php' + '?' + queryParams1.join('&')
|
||||||
}).then(function (data) {
|
}).then(function (data) {
|
||||||
queryParams2.push('buildId=' + data.data.results[0].automation_build.hashed_id);
|
queryParams2.push('buildId=' + data.data.results[0].automation_build.hashed_id);
|
||||||
|
|
||||||
$http({
|
$http({
|
||||||
method: 'GET',
|
method: 'GET',
|
||||||
url: 'http://localhost:3001/browserstack_php.php' + '?' + queryParams2.join('&')
|
url: '/browserstack_php.php' + '?' + queryParams2.join('&')
|
||||||
}).then(function (response) {
|
}).then(function (response) {
|
||||||
$scope.behatResults = {
|
$scope.behatResults = {
|
||||||
failed: 0,
|
failed: 0,
|
||||||
|
|
Loading…
Reference in New Issue