diff --git a/apps/e2e/tests/backend/endpoints/api/v1/internal/mcp.test.ts b/apps/e2e/tests/backend/endpoints/api/v1/internal/mcp.test.ts index 2648e8565f..b94fbe297a 100644 --- a/apps/e2e/tests/backend/endpoints/api/v1/internal/mcp.test.ts +++ b/apps/e2e/tests/backend/endpoints/api/v1/internal/mcp.test.ts @@ -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", }, ], }, diff --git a/apps/e2e/tests/general/cli.test.ts b/apps/e2e/tests/general/cli.test.ts index 114f3ac7cb..3cdf18a965 100644 --- a/apps/e2e/tests/general/cli.test.ts +++ b/apps/e2e/tests/general/cli.test.ts @@ -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 }) => {