Skip to content

Commit c11e723

Browse files
committed
test: include workflows in fixtures
1 parent 91a1714 commit c11e723

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/__tests__/fixtures.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { APIHealthResponse, APIProjectDetails, APIGithubOrgDetails, APIChecklistItem, APICheckItem } from '../types.js'
1+
import { APIHealthResponse, APIProjectDetails, APIGithubOrgDetails, APIChecklistItem, APICheckItem, APIWorkflowItem } from '../types.js'
22

33
export const mockApiHealthResponse: APIHealthResponse = {
44
status: 'ok',
@@ -121,3 +121,8 @@ export const mockAPICheckResponse: APICheckItem[] = [{
121121
created_at: '2025-02-21T18:53:00.485Z',
122122
updated_at: '2025-02-21T18:53:00.485Z'
123123
}]
124+
125+
export const mockAPIWorkflowResponse: APIWorkflowItem[] = [{
126+
id: 'update-stuff',
127+
description: 'Test workflow description'
128+
}]

0 commit comments

Comments
 (0)