Skip to content

Commit 18db9dd

Browse files
committed
fix: write AZURE_AI_FOUNDRY_PROJECT_ENDPOINT and AGENT_ID to .env.dev instead of .env.dev.user
1 parent 3f7023e commit 18db9dd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/tests/src/e2e/samples/ProvisionProxyAgentNodeJS.tests.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ import { CaseFactory } from "./sampleCaseFactory";
1212

1313
class ProxyAgentNodeJSTestCase extends CaseFactory {
1414
override async onBeforeProvision(projectPath: string): Promise<void> {
15-
const envFilePath = path.resolve(projectPath, "env", ".env.dev.user");
15+
// This sample is different so set the env in .env.dev other than .env.dev.user.
16+
const envFilePath = path.resolve(projectPath, "env", ".env.dev");
1617
editDotEnvFile(
1718
envFilePath,
1819
"AZURE_AI_FOUNDRY_PROJECT_ENDPOINT",

0 commit comments

Comments
 (0)