import { describe, it, expect } from 'vitest'; import { usePagination } from './index'; describe('usePagination', () => { it('should be defined', () => { expect(usePagination).toBeDefined(); }); });