From 56822c4533d51434ab6ebe3217974d846419d96e Mon Sep 17 00:00:00 2001 From: Nick Shirokov Date: Tue, 12 May 2026 14:03:15 +0300 Subject: [PATCH] test(web-test): switch webtest publication to port 9191 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Чтобы не конфликтовать с интерактивной разработкой на основном Apache (8081, занят сторонним проектом), регрессионный регресс теперь использует отдельный httpd-процесс на порту 9191. Тот же httpd запускает /web-publish webtest -Port 9191 -V8Path 8.3.24. Один процесс Apache → собственный пул лицензий 1С. На 8081 другие проекты — наши тесты их не блокируют и наоборот. Co-Authored-By: Claude Opus 4.7 (1M context) --- tests/web-test/webtest.config.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/web-test/webtest.config.mjs b/tests/web-test/webtest.config.mjs index 03811a95..1ed65387 100644 --- a/tests/web-test/webtest.config.mjs +++ b/tests/web-test/webtest.config.mjs @@ -3,8 +3,8 @@ // 1C sessions (different cookies), used by multi-context tests to simulate two users. export default { contexts: { - a: { url: 'http://localhost:8081/webtest/ru_RU' }, - b: { url: 'http://localhost:8081/webtest/ru_RU' }, + a: { url: 'http://localhost:9191/webtest/ru_RU' }, + b: { url: 'http://localhost:9191/webtest/ru_RU' }, }, defaultContext: 'a', // isolation: 'tab' (default) — persistent context, tabs in one window, 1С extension loads.