Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: e2e test regression #1937

Merged
merged 4 commits into from
Nov 9, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/docs/concepts/ui-user-interface.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -1330,8 +1330,8 @@ will be overwritten!
"text": "Remove security key \"{name}\"",
"type": "info",
"context": {
"added_at": "2020-01-01T00:59:59Z",
"display_name": "{name}"
"display_name": "{name}",
"added_at": "2020-01-01T00:59:59Z"
}
}
```
Expand Down Expand Up @@ -1559,8 +1559,8 @@ will be overwritten!
"text": "\"{value}\" is not valid \"{format}\"",
"type": "error",
"context": {
"actual_value": "{value}",
"expected_format": "{format}"
"expected_format": "{format}",
"actual_value": "{value}"
}
}
```
Expand Down
8 changes: 4 additions & 4 deletions test/e2e/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ export PATH=.bin:$PATH
export KRATOS_PUBLIC_URL=http://localhost:4433/
export KRATOS_BROWSER_URL=http://localhost:4433/
export KRATOS_ADMIN_URL=http://localhost:4434/
export KRATOS_UI_URL=http://localhost:4456/
export KRATOS_UI_REACT_URL=http://localhost:4458/
export KRATOS_UI_REACT_NATIVE_URL=http://localhost:4457/
export KRATOS_UI_URL=http://127.0.0.1:4456/
export KRATOS_UI_REACT_URL=http://127.0.0.1:4458/
export KRATOS_UI_REACT_NATIVE_URL=http://127.0.0.1:4457/
export LOG_LEAK_SENSITIVE_VALUES=true
export DEV_DISABLE_API_FLOW_ENFORCEMENT=true

Expand Down Expand Up @@ -157,7 +157,7 @@ run() {
(
cd "$react_ui_dir"
ORY_KRATOS_URL=http://localhost:4433 npm run build
ORY_KRATOS_URL=http://localhost:4433 npm run start -- --port 4458 \
ORY_KRATOS_URL=http://localhost:4433 npm run start -- --hostname 0.0.0.0 --port 4458 \
>"${base}/test/e2e/react-iu.e2e.log" 2>&1 &
)
else
Expand Down