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
path: root/spec
diff options
context:
space:
mode:
authorMario de la Ossa <mariodelaossa@gmail.com>2017-12-19 02:08:28 +0300
committerMario de la Ossa <mariodelaossa@gmail.com>2017-12-21 19:43:08 +0300
commite1f5c2b194fa8ee898446517f1802c6e28312b0b (patch)
tree9be4c0a82667426bd013e4ca99241fc33c50947e /spec
parentf7a9ced235be7ef13f90b561d23ffe602e11e9a3 (diff)
Do not show Vue pagination if only one page
Diffstat (limited to 'spec')
-rw-r--r--spec/javascripts/vue_shared/components/table_pagination_spec.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/spec/javascripts/vue_shared/components/table_pagination_spec.js b/spec/javascripts/vue_shared/components/table_pagination_spec.js
index b0b78e34e0f..1465ef5855f 100644
--- a/spec/javascripts/vue_shared/components/table_pagination_spec.js
+++ b/spec/javascripts/vue_shared/components/table_pagination_spec.js
@@ -19,6 +19,22 @@ describe('Pagination component', () => {
});
describe('render', () => {
+ it('should not render anything', () => {
+ component = mountComponet({
+ pageInfo: {
+ nextPage: 1,
+ page: 1,
+ perPage: 20,
+ previousPage: null,
+ total: 15,
+ totalPages: 1,
+ },
+ change: spy,
+ });
+
+ expect(component.$el.innerHTML).not.toBeDefined();
+ });
+
describe('prev button', () => {
it('should be disabled and non clickable', () => {
component = mountComponet({