Skip to content

Commit

Permalink
Update fixtures
Browse files Browse the repository at this point in the history
  • Loading branch information
Drarig29 committed Sep 10, 2024
1 parent a60a483 commit 40c843a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/commands/synthetics/__tests__/utils/public.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -833,6 +833,8 @@ describe('utils', () => {
const apiTest = getApiTest('pid')
const result: Result = {
executionRule: ExecutionRule.BLOCKING,
initialResultId: undefined,
isNonFinal: false,
location: mockLocation.display_name,
passed: true,
result: getBrowserServerResult({passed: true}),
Expand Down Expand Up @@ -1058,7 +1060,7 @@ describe('utils', () => {
})
expect(mockReporter.resultEnd).toHaveBeenNthCalledWith(
3,
{...result, resultId: 'rid-3', passed: false}, // the first attempt failed, so it's being retried
{...result, isNonFinal: true, resultId: 'rid-3', passed: false}, // the first attempt failed, so it's being retried
MOCK_BASE_URL,
'bid'
)
Expand Down

0 comments on commit 40c843a

Please sign in to comment.