File tree Expand file tree Collapse file tree 1 file changed +0
-20
lines changed
Expand file tree Collapse file tree 1 file changed +0
-20
lines changed Original file line number Diff line number Diff 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 ) ;
You can’t perform that action at this time.
0 commit comments