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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/javascripts/vue_shared/components/pagination/graphql_pagination_spec.js')
-rw-r--r--spec/javascripts/vue_shared/components/pagination/graphql_pagination_spec.js73
1 files changed, 0 insertions, 73 deletions
diff --git a/spec/javascripts/vue_shared/components/pagination/graphql_pagination_spec.js b/spec/javascripts/vue_shared/components/pagination/graphql_pagination_spec.js
deleted file mode 100644
index 9e72a0e2480..00000000000
--- a/spec/javascripts/vue_shared/components/pagination/graphql_pagination_spec.js
+++ /dev/null
@@ -1,73 +0,0 @@
-import { shallowMount, createLocalVue } from '@vue/test-utils';
-import GraphqlPagination from '~/vue_shared/components/pagination/graphql_pagination.vue';
-
-const localVue = createLocalVue();
-
-describe('Graphql Pagination component', () => {
- let wrapper;
- function factory({ hasNextPage = true, hasPreviousPage = true }) {
- wrapper = shallowMount(localVue.extend(GraphqlPagination), {
- propsData: {
- hasNextPage,
- hasPreviousPage,
- },
- localVue,
- });
- }
-
- afterEach(() => {
- wrapper.destroy();
- });
-
- describe('without previous page', () => {
- beforeEach(() => {
- factory({ hasPreviousPage: false });
- });
-
- it('renders disabled previous button', () => {
- expect(wrapper.find('.js-prev-btn').attributes().disabled).toEqual('true');
- });
- });
-
- describe('with previous page', () => {
- beforeEach(() => {
- factory({ hasPreviousPage: true });
- });
-
- it('renders enabled previous button', () => {
- expect(wrapper.find('.js-prev-btn').attributes().disabled).toEqual(undefined);
- });
-
- it('emits previousClicked on click', () => {
- wrapper.find('.js-prev-btn').vm.$emit('click');
-
- expect(wrapper.emitted().previousClicked.length).toBe(1);
- });
- });
-
- describe('without next page', () => {
- beforeEach(() => {
- factory({ hasNextPage: false });
- });
-
- it('renders disabled next button', () => {
- expect(wrapper.find('.js-next-btn').attributes().disabled).toEqual('true');
- });
- });
-
- describe('with next page', () => {
- beforeEach(() => {
- factory({ hasNextPage: true });
- });
-
- it('renders enabled next button', () => {
- expect(wrapper.find('.js-next-btn').attributes().disabled).toEqual(undefined);
- });
-
- it('emits nextClicked on click', () => {
- wrapper.find('.js-next-btn').vm.$emit('click');
-
- expect(wrapper.emitted().nextClicked.length).toBe(1);
- });
- });
-});