Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Tatuya Kamada
gitlab-ce
Commits
be3e32f5
Commit
be3e32f5
authored
Dec 15, 2016
by
Regis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
change test to reflect camelCase method
parent
0380fdb4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
spec/javascripts/vue_pagination/pagination_spec.js.es6
spec/javascripts/vue_pagination/pagination_spec.js.es6
+6
-6
No files found.
spec/javascripts/vue_pagination/pagination_spec.js.es6
View file @
be3e32f5
...
...
@@ -31,7 +31,7 @@ describe('Pagination component', () => {
expect(component.$el.classList).toContain('gl-pagination');
component.change
p
age({ target: { innerText: '1' } });
component.change
P
age({ target: { innerText: '1' } });
expect(changeChanges.one).toEqual(1);
expect(changeChanges.two).toEqual('all');
...
...
@@ -52,7 +52,7 @@ describe('Pagination component', () => {
},
});
component.change
p
age({ target: { innerText: 'Prev' } });
component.change
P
age({ target: { innerText: 'Prev' } });
expect(changeChanges.one).toEqual(1);
expect(changeChanges.two).toEqual('all');
...
...
@@ -73,7 +73,7 @@ describe('Pagination component', () => {
},
});
component.change
p
age({ target: { innerText: 'Next' } });
component.change
P
age({ target: { innerText: 'Next' } });
expect(changeChanges.one).toEqual(5);
expect(changeChanges.two).toEqual('all');
...
...
@@ -94,7 +94,7 @@ describe('Pagination component', () => {
},
});
component.change
p
age({ target: { innerText: 'Last >>' } });
component.change
P
age({ target: { innerText: 'Last >>' } });
expect(changeChanges.one).toEqual(10);
expect(changeChanges.two).toEqual('all');
...
...
@@ -115,7 +115,7 @@ describe('Pagination component', () => {
},
});
component.change
p
age({ target: { innerText: '<< First' } });
component.change
P
age({ target: { innerText: '<< First' } });
expect(changeChanges.one).toEqual(1);
expect(changeChanges.two).toEqual('all');
...
...
@@ -136,7 +136,7 @@ describe('Pagination component', () => {
},
});
component.change
p
age({ target: { innerText: '...' } });
component.change
P
age({ target: { innerText: '...' } });
expect(changeChanges.one).toEqual(1);
expect(changeChanges.two).toEqual('all');
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment