diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2021-02-18 10:34:06 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2021-02-18 10:34:06 +0000 |
commit | 859a6fb938bb9ee2a317c46dfa4fcc1af49608f0 (patch) | |
tree | d7f2700abe6b4ffcb2dcfc80631b2d87d0609239 /spec/frontend/api_spec.js | |
parent | 446d496a6d000c73a304be52587cd9bbc7493136 (diff) | |
download | gitlab-ce-859a6fb938bb9ee2a317c46dfa4fcc1af49608f0.tar.gz |
Add latest changes from gitlab-org/gitlab@13-9-stable-eev13.9.0-rc42
Diffstat (limited to 'spec/frontend/api_spec.js')
-rw-r--r-- | spec/frontend/api_spec.js | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/spec/frontend/api_spec.js b/spec/frontend/api_spec.js index 76d67195499..d2522a0124a 100644 --- a/spec/frontend/api_spec.js +++ b/spec/frontend/api_spec.js @@ -1,6 +1,6 @@ import MockAdapter from 'axios-mock-adapter'; -import axios from '~/lib/utils/axios_utils'; import Api from '~/api'; +import axios from '~/lib/utils/axios_utils'; import httpStatus from '~/lib/utils/http_status'; describe('Api', () => { @@ -260,6 +260,28 @@ describe('Api', () => { }); }); + describe('groupLabels', () => { + it('fetches group labels', (done) => { + const options = { params: { search: 'foo' } }; + const expectedGroup = 'gitlab-org'; + const expectedUrl = `${dummyUrlRoot}/groups/${expectedGroup}/-/labels`; + mock.onGet(expectedUrl).reply(httpStatus.OK, [ + { + id: 1, + title: 'Foo Label', + }, + ]); + + Api.groupLabels(expectedGroup, options) + .then((res) => { + expect(res.length).toBe(1); + expect(res[0].title).toBe('Foo Label'); + }) + .then(done) + .catch(done.fail); + }); + }); + describe('namespaces', () => { it('fetches namespaces', (done) => { const query = 'dummy query'; |