MCPcopy Create free account
hub / github.com/UsefulSoftwareCo/executor / greetSpec

Function greetSpec

e2e/scenarios/connect-deep-link.test.ts:37–51  ·  view source on GitHub ↗
(baseUrl: string)

Source from the content-addressed store, hash-verified

35
36/** OpenAPI 3 spec with a single operation — enough to be a real catalog entry. */
37const greetSpec = (baseUrl: string): string =>
38 JSON.stringify({
39 openapi: "3.0.3",
40 info: { title: "Deep Link API", version: "1.0.0" },
41 servers: [{ url: baseUrl }],
42 paths: {
43 "/greet": {
44 get: {
45 operationId: "getGreeting",
46 summary: "Return a greeting message",
47 responses: { "200": { description: "A greeting" } },
48 },
49 },
50 },
51 });
52
53scenario(
54 "Connect · /connect/<slug> lands an end user in that integration's connect flow",

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected