potential fix for tests crashing
use underscore noop instead of jquery
This commit is contained in:
parent
3058334b99
commit
b367cc0ca2
1 changed files with 3 additions and 2 deletions
|
@ -1,8 +1,9 @@
|
|||
import _ from 'underscore';
|
||||
import axios from './lib/utils/axios_utils';
|
||||
|
||||
const Api = {
|
||||
groupsPath: '/api/:version/groups.json',
|
||||
groupPath: '/api/:version/groups/:id.json',
|
||||
groupPath: '/api/:version/groups/:id',
|
||||
namespacesPath: '/api/:version/namespaces.json',
|
||||
groupProjectsPath: '/api/:version/groups/:id/projects.json',
|
||||
projectsPath: '/api/:version/projects.json',
|
||||
|
@ -59,7 +60,7 @@ const Api = {
|
|||
},
|
||||
|
||||
// Return projects list. Filtered by query
|
||||
projects(query, options, callback = $.noop) {
|
||||
projects(query, options, callback = _.noop) {
|
||||
const url = Api.buildUrl(Api.projectsPath);
|
||||
const defaults = {
|
||||
search: query,
|
||||
|
|
Loading…
Reference in a new issue