mirror of
https://github.com/alkimake/paperclip.git
synced 2026-06-17 03:10:38 +09:00
Stabilize rebased route test expectations
Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
parent
9499d0df97
commit
467f3a749a
6 changed files with 32 additions and 7 deletions
|
|
@ -1017,12 +1017,12 @@ describeEmbeddedPostgres("issueService blockers and dependency wake readiness",
|
|||
|
||||
await svc.update(blockerB, { status: "done" });
|
||||
|
||||
expect(await svc.listWakeableBlockedDependents(blockerA)).toEqual([
|
||||
{
|
||||
await expect(svc.listWakeableBlockedDependents(blockerA)).resolves.toEqual([
|
||||
expect.objectContaining({
|
||||
id: blockedIssueId,
|
||||
assigneeAgentId,
|
||||
blockerIssueIds: [blockerA, blockerB],
|
||||
},
|
||||
blockerIssueIds: expect.arrayContaining([blockerA, blockerB]),
|
||||
}),
|
||||
]);
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue