Skip to content

Commit

Permalink
Fix tsc
Browse files Browse the repository at this point in the history
  • Loading branch information
khoidt committed Aug 1, 2023
1 parent 84c3d60 commit d5d212a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/fragmentarium/application/FragmentService.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ const fragmentRepository = {
fetchGenres: jest.fn(),
updateGenres: jest.fn(),
updateScript: jest.fn(),
updateDate: jest.fn(),
fetchPeriods: jest.fn(),
updateReferences: jest.fn(),
folioPager: jest.fn(),
Expand Down
2 changes: 2 additions & 0 deletions src/fragmentarium/ui/info/Details.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ const fragmentService = new MockFragmentService()

const updateGenres = jest.fn()
const updateScript = jest.fn()
const updateDate = jest.fn()

let fragment: Fragment

Expand All @@ -37,6 +38,7 @@ async function renderDetails() {
fragment={fragment}
updateGenres={updateGenres}
updateScript={updateScript}
updateDate={updateDate}
fragmentService={fragmentService}
/>
</MemoryRouter>
Expand Down

0 comments on commit d5d212a

Please sign in to comment.