diff --git a/scripts/e2e/Dockerfile b/scripts/e2e/Dockerfile index 2d8ab1c46..5873750aa 100644 --- a/scripts/e2e/Dockerfile +++ b/scripts/e2e/Dockerfile @@ -4,6 +4,8 @@ RUN corepack enable WORKDIR /app +ENV NODE_OPTIONS="--disable-warning=ExperimentalWarning" + COPY package.json pnpm-lock.yaml pnpm-workspace.yaml tsconfig.json vitest.config.ts ./ COPY patches ./patches COPY src ./src diff --git a/scripts/test-live-gateway-models-docker.sh b/scripts/test-live-gateway-models-docker.sh index 01ef0c84f..d78e3ae45 100755 --- a/scripts/test-live-gateway-models-docker.sh +++ b/scripts/test-live-gateway-models-docker.sh @@ -20,6 +20,7 @@ docker run --rm -t \ --entrypoint bash \ -e COREPACK_ENABLE_DOWNLOAD_PROMPT=0 \ -e HOME=/home/node \ + -e NODE_OPTIONS=--disable-warning=ExperimentalWarning \ -e CLAWDBOT_LIVE_TEST=1 \ -e CLAWDBOT_LIVE_GATEWAY_MODELS="${CLAWDBOT_LIVE_GATEWAY_MODELS:-all}" \ -e CLAWDBOT_LIVE_GATEWAY_PROVIDERS="${CLAWDBOT_LIVE_GATEWAY_PROVIDERS:-}" \ diff --git a/scripts/test-live-models-docker.sh b/scripts/test-live-models-docker.sh index 468acdb2b..28ee87d16 100755 --- a/scripts/test-live-models-docker.sh +++ b/scripts/test-live-models-docker.sh @@ -20,6 +20,7 @@ docker run --rm -t \ --entrypoint bash \ -e COREPACK_ENABLE_DOWNLOAD_PROMPT=0 \ -e HOME=/home/node \ + -e NODE_OPTIONS=--disable-warning=ExperimentalWarning \ -e CLAWDBOT_LIVE_TEST=1 \ -e CLAWDBOT_LIVE_MODELS="${CLAWDBOT_LIVE_MODELS:-all}" \ -e CLAWDBOT_LIVE_PROVIDERS="${CLAWDBOT_LIVE_PROVIDERS:-}" \