Welcome to mirror list, hosted at ThFree Co, Russian Federation.

utils_spec.js « dependency_proxy « packages_and_registries « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 72072c08537215252bafb3d9299c9818b7b69a54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import { getPageParams } from '~/packages_and_registries/dependency_proxy/utils';

describe('getPageParams', () => {
  it('should return the previous page params if before cursor is available', () => {
    const pageInfo = { before: 'abc123' };
    expect(getPageParams(pageInfo)).toEqual({
      first: null,
      before: pageInfo.before,
      last: 20,
    });
  });

  it('should return the next page params if after cursor is available', () => {
    const pageInfo = { after: 'abc123' };
    expect(getPageParams(pageInfo)).toEqual({
      after: pageInfo.after,
      first: 20,
    });
  });

  it('should return an empty object if both before and after cursors are not available', () => {
    const pageInfo = {};
    expect(getPageParams(pageInfo)).toEqual({});
  });
});