chore: put OAuth2 Server full address

pull/5911/head
k3yi0 2022-04-29 10:45:43 +02:00
parent 595bc348cd
commit e9d0b899bb
2 changed files with 1 additions and 2 deletions

View File

@ -97,7 +97,6 @@ jobs:
run: |
echo "InfluxDB data node status: $(curl -Isk "https://localhost:8086/ping" | head -n 1)"
echo "Chronograf status: $(curl -Isk "http://localhost:8888" | head -n 1)"
echo "OAuth2 Server status: $(curl -Isk "http://172.17.0.1:8087" | head -n 1)"
cat out.log || true
- name: Cypress

View File

@ -42,7 +42,7 @@ export const getByTestID = (
// Function sends HTTP POST request to OAuth2 Mock server in order to change user information
const changeUserInfo: Function = (name: string): void => {
const xhttp: XMLHttpRequest = new XMLHttpRequest()
const url: string = Cypress.env('oauth2ServerURL') + '/config'
const url: string = 'http://172.17.0.1:8087/config'
const body = {
"userinfo": {
"name": name,