Skip to content

Commit 762a2e1

Browse files
Apply prettier formatting to session_todos_changed e2e test
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 9ffba90 commit 762a2e1

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

nodejs/test/e2e/session_todos_changed.e2e.test.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,10 @@ describe("Todos changed event + readSqlTodosWithDependencies", async () => {
4646
expect(todosEvents.length).toBeGreaterThanOrEqual(1);
4747

4848
const result = await session.rpc.plan.readSqlTodosWithDependencies();
49-
const ids = result.rows.map((r) => r.id).filter((x): x is string => !!x).sort();
49+
const ids = result.rows
50+
.map((r) => r.id)
51+
.filter((x): x is string => !!x)
52+
.sort();
5053
expect(ids).toEqual(["alpha", "beta"]);
5154

5255
const edge = result.dependencies.find(

0 commit comments

Comments
 (0)