12345678910111213141516171819202122232425262728293031323334353637383940 |
- import { makeGetRequest } from './requests'
- import { immutableAssign } from '../miscs/miscs'
- function checkBadStartPagination (url: string, path: string, token?: string, query = {}) {
- return makeGetRequest({
- url,
- path,
- token,
- query: immutableAssign(query, { start: 'hello' }),
- statusCodeExpected: 400
- })
- }
- function checkBadCountPagination (url: string, path: string, token?: string, query = {}) {
- return makeGetRequest({
- url,
- path,
- token,
- query: immutableAssign(query, { count: 'hello' }),
- statusCodeExpected: 400
- })
- }
- function checkBadSortPagination (url: string, path: string, token?: string, query = {}) {
- return makeGetRequest({
- url,
- path,
- token,
- query: immutableAssign(query, { sort: 'hello' }),
- statusCodeExpected: 400
- })
- }
- // ---------------------------------------------------------------------------
- export {
- checkBadStartPagination,
- checkBadCountPagination,
- checkBadSortPagination
- }
|