Commit a073d48a authored by Shubham Pandey's avatar Shubham Pandey Committed by Kushal Pandya

[UPDATE] updated underscore to lodash in spec/javascripts/badges

parent f46fc221
---
title: Replaced underscore with lodash for spec/javascripts/badges
merge_request: 25135
author: Shubham Pandey
type: other
import _ from 'underscore';
import { uniqueId } from 'lodash';
import { DUMMY_IMAGE_URL, TEST_HOST } from 'spec/test_constants';
import { PROJECT_BADGE } from '~/badges/constants';
export const createDummyBadge = () => {
const id = _.uniqueId();
const id = uniqueId();
return {
id,
name: 'TestBadge',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment