Skip to content

Commit 54e7a09

Browse files
committed
chore(run-store): apply formatter to envScopedResidency test
1 parent 6d54da1 commit 54e7a09

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

internal-packages/run-store/src/runOpsStore.envScopedResidency.test.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,11 @@ function buildRouter(newClearCount?: number, legacyClearCount?: number) {
4141
describe("RoutingRunStore.upsertWaitpointTag — residency hint for a tag with no minted id", () => {
4242
it("routes to NEW when residency is NEW and no id is supplied", async () => {
4343
const { router, newStore, legacyStore } = buildRouter();
44-
await router.upsertWaitpointTag({ environmentId: "env", name: "t", projectId: "p" }, undefined, "NEW");
44+
await router.upsertWaitpointTag(
45+
{ environmentId: "env", name: "t", projectId: "p" },
46+
undefined,
47+
"NEW"
48+
);
4549
expect(newStore.calls.map((c) => c.method)).toEqual(["upsertWaitpointTag"]);
4650
expect(legacyStore.calls).toHaveLength(0);
4751
});

0 commit comments

Comments
 (0)