v2: fix test router mount /test/api → /test, /chaos теперь доступен без авторизации

This commit is contained in:
2026-06-12 23:01:28 +04:00
parent 0925ae4fd8
commit 5bc1b5773a
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -6,7 +6,7 @@
// ═══════════════════════════════════════════════════════════════════════════════
module.exports = {
version: '0.5.87',
version: '0.5.88',
iamUrl: process.env.V2_IAM_API_URL || 'https://auth-api.ngcloud.ru',
appUrl: process.env.V2_APP_URL || 'https://whitelist.nodejsk8s.services.ngcloud.ru',
};
+1 -1
View File
@@ -3,7 +3,7 @@
# ПОЛНЫЕ тесты CRUD — ТЗ, нагрузка, БД, имперсонация
# ═══════════════════════════════════════════════════════════════════════════════
BASE="${1:-http://localhost:3000}/v2/test/api"
BASE="${1:-http://localhost:3000}/v2/test"
P=0 F=0 TOTAL=0
t() { ((TOTAL++)); local n="$1"; shift; if "$@"; then echo "$n"; ((P++)); else echo "$n"; ((F++)); fi; }