(integration: string, owner: "user" | "org", name: string)
| 6 | import { ConnectionName, IntegrationSlug } from "./ids"; |
| 7 | |
| 8 | const binding = (integration: string, owner: "user" | "org", name: string): ArtifactBinding => ({ |
| 9 | integration: IntegrationSlug.make(integration), |
| 10 | owner, |
| 11 | connection: ConnectionName.make(name), |
| 12 | }); |
| 13 | |
| 14 | // The `executor.artifacts` surface against the real SQLite test db. Artifacts |
| 15 | // are owner-scoped rows with no plugin involvement, so the default test |