mirror of
https://github.com/koichixD/uptime-kuma.git
synced 2026-09-04 09:13:21 +00:00
increase test verbosity
This commit is contained in:
+2
-1
@@ -86,7 +86,8 @@
|
||||
"ignoreTLSError": "Ignore TLS/SSL errors for HTTPS websites",
|
||||
"ignoreTLSErrorGeneral": "Ignore TLS/SSL error for connection",
|
||||
"upsideDownModeDescription": "Flip the status upside down. If the service is reachable, it is DOWN.",
|
||||
"wsIgnoreHeadersDescription": "Test non compliant Websocket servers that don't respond with correct headers.",
|
||||
"wsIgnoreHeadersDescription": "Test non compliant Websocket servers.",
|
||||
"Ignore Sec-WebSocket-Accept header": "Ignore Sec-WebSocket-Accept header",
|
||||
"maxRedirectDescription": "Maximum number of redirects to follow. Set to 0 to disable redirects.",
|
||||
"Upside Down Mode": "Upside Down Mode",
|
||||
"Max. Redirects": "Max. Redirects",
|
||||
|
||||
@@ -47,7 +47,7 @@
|
||||
HTTP(s) - Browser Engine (Chrome/Chromium) (Beta)
|
||||
</option>
|
||||
|
||||
<option value="websocket">
|
||||
<option value="websocket-upgrade">
|
||||
Websocket Upgrade
|
||||
</option>
|
||||
</optgroup>
|
||||
@@ -123,7 +123,7 @@
|
||||
</div>
|
||||
|
||||
<!-- Websocket -->
|
||||
<div v-if="monitor.type === 'websocket'" class="my-3">
|
||||
<div v-if="monitor.type === 'websocket-upgrade'" class="my-3">
|
||||
<label for="wsurl" class="form-label">{{ $t("URL") }}</label>
|
||||
<input id="wsurl" v-model="monitor.wsurl" type="wsurl" class="form-control" pattern="wss?://.+" required data-testid="url-input">
|
||||
</div>
|
||||
@@ -631,10 +631,10 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div v-if="monitor.type === 'websocket' " class="my-3 form-check">
|
||||
<div v-if="monitor.type === 'websocket-upgrade' " class="my-3 form-check">
|
||||
<input id="ws-ignore-headers" v-model="monitor.wsIgnoreHeaders" class="form-check-input" type="checkbox">
|
||||
<label class="form-check-label" for="ws-ignore-headers">
|
||||
{{ $t("Ignore Server Headers") }}
|
||||
{{ $t("Ignore Sec-WebSocket-Accept header") }}
|
||||
</label>
|
||||
<div class="form-text">
|
||||
{{ $t("wsIgnoreHeadersDescription") }}
|
||||
|
||||
Reference in New Issue
Block a user