Skip to content

Commit

Permalink
chore: consistent test names
Browse files Browse the repository at this point in the history
  • Loading branch information
KaiVandivier committed Jul 26, 2024
1 parent 79d0b0e commit 63a703c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const wrapper: FC = ({ children }) => (
</OfflineProvider>
)

test('useRecordingState has basically stable references', () => {
test('useRecordingState has stable references', () => {
const { result, rerender } = renderHook(() => useRecordingState('one'), {
wrapper,
})
Expand All @@ -26,7 +26,7 @@ test('useRecordingState has basically stable references', () => {
expect(result.current.removeRecordingState).toBe(origRemoveRecordingState)
})

test('useCachedSection has basically stable references', () => {
test('useCachedSection has stable references', () => {
const { result, rerender } = renderHook(() => useCachedSection('one'), {
wrapper,
})
Expand Down

0 comments on commit 63a703c

Please sign in to comment.