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/frontend/repository/commits_service_spec.js')
-rw-r--r--spec/frontend/repository/commits_service_spec.js13
1 files changed, 10 insertions, 3 deletions
diff --git a/spec/frontend/repository/commits_service_spec.js b/spec/frontend/repository/commits_service_spec.js
index 22ef552c2f9..5fb683bd370 100644
--- a/spec/frontend/repository/commits_service_spec.js
+++ b/spec/frontend/repository/commits_service_spec.js
@@ -25,8 +25,13 @@ describe('commits service', () => {
resetRequestedCommits();
});
- const requestCommits = (offset, project = 'my-project', path = '', ref = 'main') =>
- loadCommits(project, path, ref, offset);
+ const requestCommits = (
+ offset,
+ project = 'my-project',
+ path = '',
+ ref = 'main',
+ refType = 'heads',
+ ) => loadCommits(project, path, ref, offset, refType);
it('calls axios get', async () => {
const offset = 10;
@@ -37,7 +42,9 @@ describe('commits service', () => {
await requestCommits(offset, project, path, ref);
- expect(axios.get).toHaveBeenCalledWith(testUrl, { params: { format: 'json', offset } });
+ expect(axios.get).toHaveBeenCalledWith(testUrl, {
+ params: { format: 'json', offset, ref_type: 'heads' },
+ });
});
it('encodes the path and ref', async () => {