Skip to content

Commit dffb0d2

Browse files
d-csclaude
andcommitted
style(run-ops): apply oxfmt
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 8c5a215 commit dffb0d2

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

internal-packages/run-store/src/PostgresRunStore.controlPlaneAlertFk.test.ts

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,10 @@ describe("ProjectAlert control-plane → run-subgraph FK reconciliation", () =>
5353
"creating a TASK_RUN alert with a ksuid taskRunId (run only on the run-ops DB) succeeds on control-plane",
5454
async ({ prisma14, prisma17 }) => {
5555
const suffix = "alert-ksuid";
56-
const { project, environment, channel } = await seedControlPlaneAlertPrereqs(prisma14, suffix);
56+
const { project, environment, channel } = await seedControlPlaneAlertPrereqs(
57+
prisma14,
58+
suffix
59+
);
5760

5861
// The run exists ONLY on the dedicated run-ops DB (prisma17), never on control-plane.
5962
await (prisma17 as RunOpsPrismaClient).taskRun.create({
@@ -103,7 +106,10 @@ describe("ProjectAlert control-plane → run-subgraph FK reconciliation", () =>
103106
"creating a TASK_RUN_ATTEMPT alert with a ksuid taskRunAttemptId (attempt only on the run-ops DB) succeeds on control-plane",
104107
async ({ prisma14 }) => {
105108
const suffix = "alert-ksuid-attempt";
106-
const { project, environment, channel } = await seedControlPlaneAlertPrereqs(prisma14, suffix);
109+
const { project, environment, channel } = await seedControlPlaneAlertPrereqs(
110+
prisma14,
111+
suffix
112+
);
107113

108114
// A ksuid attempt id with no matching control-plane TaskRunAttempt row. With the FK present
109115
// this throws P2003; after the FK is dropped it succeeds.

0 commit comments

Comments
 (0)