Skip to content

Commit 8b75656

Browse files
committed
style: wrap long assertion in executor-manager test (prettier)
1 parent 437b70e commit 8b75656

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

packages/engine/src/execution/executor-manager.test.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,11 @@ describe("ExecutorManager", () => {
153153

154154
// The terminal completion transition must be skipped so the canceled state is preserved.
155155
// eslint-disable-next-line @typescript-eslint/unbound-method
156-
expect(JobTransitioner.apply).not.toHaveBeenCalledWith(backend, expect.anything(), expect.any(CompleteTransition));
156+
expect(JobTransitioner.apply).not.toHaveBeenCalledWith(
157+
backend,
158+
expect.anything(),
159+
expect.any(CompleteTransition),
160+
);
157161

158162
await executorManager.destroy();
159163
},

0 commit comments

Comments
 (0)