How do you prefer to test pagination in automated tests? Creating enough records can be slow. Is it a good practice to reduce the number of items per page in test environment?
@rbates I use a `per-page` param that's set in tests for this, even though it never gets set via the UI (there's no control for it, but it works if you add it to the URL manually).