chore: put OAuth2 Server full address
parent
595bc348cd
commit
e9d0b899bb
|
@ -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
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue