[DEVIN: Konsti] Fix failing E2E tests: CLI error string and MCP prompt name (#1439)

This commit is contained in:
devin-ai-integration[bot] 2026-05-19 14:20:18 -07:00 committed by GitHub
parent d68631ea4f
commit deff6c3cc4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View File

@ -111,7 +111,7 @@ it("public MCP endpoint should expose prompts and resources without method-not-f
result: {
prompts: [
{
name: "ask_stack_auth",
name: "skill",
},
],
},
@ -128,8 +128,8 @@ it("public MCP endpoint should expose prompts and resources without method-not-f
result: {
resources: [
{
uri: "stack-auth://mcp/setup",
name: "stack-auth-mcp-setup",
uri: "https://skill.stack-auth.com",
name: "skill",
},
],
},

View File

@ -608,7 +608,7 @@ describe("Stack CLI", () => {
"init", "--mode", "link-config", "--config-file", "/nonexistent/stack.config.ts",
]);
expect(exitCode).toBe(1);
expect(stderr).toContain("File not found");
expect(stderr).toContain("Config file not found");
});
it("init link-cloud creates .env with API keys", async ({ expect }) => {