fix: remove unused env vars

This commit is contained in:
Arseniy Klempner 2025-09-04 13:42:31 -07:00
parent 8338b43cb4
commit fa47c0fd2a
No known key found for this signature in database
GPG Key ID: 51653F18863BD24B

View File

@ -13,9 +13,7 @@ if (!process.env.CI) {
}
const EXAMPLE_PORT = process.env.EXAMPLE_PORT || "8080";
// web-chat specific thingy
const EXAMPLE_TEMPLATE = process.env.EXAMPLE_TEMPLATE || "";
const BASE_URL = `http://127.0.0.1:${EXAMPLE_PORT}/${EXAMPLE_TEMPLATE}`;
const BASE_URL = `http://127.0.0.1:${EXAMPLE_PORT}`;
// Ignore docker-based tests on CI
const TEST_IGNORE = process.env.CI ? ["tests/docker-*.spec.ts"] : [];