Skip to content

Commit 8c1e83f

Browse files
committed
test: include bulk-import in fixtures
1 parent a745592 commit 8c1e83f

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/__tests__/fixtures.ts

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

33
export const mockApiHealthResponse: APIHealthResponse = {
44
status: 'ok',
@@ -138,3 +138,9 @@ export const mockAPIWorkflowRunResponse: APIWorkflowRunItem = {
138138
completed: '2025-06-21T10:05:02.500Z',
139139
result: { success: true, message: 'Workflow completed successfully' }
140140
}
141+
142+
export const mockAPIBulkImportOperationResponse: APIBulkImportOperationItem[] = [{
143+
id: 'import-data',
144+
description: 'Test bulk import operation description',
145+
schema: 'test-bulk-import-operation'
146+
}]

0 commit comments

Comments
 (0)