Skip to content

Commit 7098df5

Browse files
Update packages/backend-test/backend.testsuite.ts
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 16a3cdc commit 7098df5

File tree

1 file changed

+0
-20
lines changed

1 file changed

+0
-20
lines changed

packages/backend-test/backend.testsuite.ts

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -669,26 +669,6 @@ export function testBackend(options: TestBackendOptions): void {
669669
});
670670
});
671671

672-
describe("getStepAttempt() duplicate", () => {
673-
test("returns a persisted step attempt", async () => {
674-
const claimed = await createClaimedWorkflowRun(backend);
675-
676-
const created = await backend.createStepAttempt({
677-
workflowRunId: claimed.id,
678-
workerId: claimed.workerId!, // eslint-disable-line @typescript-eslint/no-non-null-assertion
679-
stepName: randomUUID(),
680-
kind: "function",
681-
config: {},
682-
context: null,
683-
});
684-
685-
const got = await backend.getStepAttempt({
686-
stepAttemptId: created.id,
687-
});
688-
expect(got).toEqual(created);
689-
});
690-
});
691-
692672
describe("completeStepAttempt()", () => {
693673
test("marks running step attempts as completed", async () => {
694674
const claimed = await createClaimedWorkflowRun(backend);

0 commit comments

Comments
 (0)