Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions apps/e2e/tests/backend/endpoints/api/v1/internal/mcp.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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",
},
],
},
Expand All @@ -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",
},
],
},
Expand Down
2 changes: 1 addition & 1 deletion apps/e2e/tests/general/cli.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 }) => {
Expand Down
Loading