-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy path.env.test
More file actions
18 lines (14 loc) · 782 Bytes
/
.env.test
File metadata and controls
18 lines (14 loc) · 782 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Integration test environment variables
# This file is used by tests when NODE_ENV=test
ELASTICSEARCH_ENDPOINT=http://localhost:9200
ELASTICSEARCH_USERNAME=elastic
ELASTICSEARCH_PASSWORD=testpassword
# The setup-integration-tests.sh script provisions this endpoint
SCS_IDXR_ELASTICSEARCH_INFERENCE_ID=elser-inference-test
# Disable ELSER semantic_text field for faster testing
# This tests the indexing pipeline without the expensive ML inference.
# Note: With SCS_IDXR_DISABLE_SEMANTIC_TEXT=true, semantic search functionality is NOT tested in integration tests.
# For full ELSER validation, see the manual test plan in docs/.
SCS_IDXR_DISABLE_SEMANTIC_TEXT=true
# SCS_IDXR_ELASTICSEARCH_REQUEST_TIMEOUT is kept higher for safety
SCS_IDXR_ELASTICSEARCH_REQUEST_TIMEOUT=120000