Commit dc514da2 authored by Grzegorz Bizon's avatar Grzegorz Bizon

Resolve conflicts in recent_searches_dropdown_content_spec.js

parent 194f1f88
import Vue from 'vue';
import eventHub from '~/filtered_search/event_hub';
import RecentSearchesDropdownContent from '~/filtered_search/components/recent_searches_dropdown_content.vue';
<<<<<<< HEAD
import IssuesFilteredSearchTokenKeys from '~/filtered_search/issues_filtered_search_token_keys';
=======
import IssuableFilteredSearchTokenKeys from '~/filtered_search/issuable_filtered_search_token_keys';
>>>>>>> upstream/master
const createComponent = (propsData) => {
const Component = Vue.extend(RecentSearchesDropdownContent);
......@@ -22,22 +18,14 @@ const trimMarkupWhitespace = text => text.replace(/(\n|\s)+/gm, ' ').trim();
describe('RecentSearchesDropdownContent', () => {
const propsDataWithoutItems = {
items: [],
<<<<<<< HEAD
allowedKeys: IssuesFilteredSearchTokenKeys.getKeys(),
=======
allowedKeys: IssuableFilteredSearchTokenKeys.getKeys(),
>>>>>>> upstream/master
};
const propsDataWithItems = {
items: [
'foo',
'author:@root label:~foo bar',
],
<<<<<<< HEAD
allowedKeys: IssuesFilteredSearchTokenKeys.getKeys(),
=======
allowedKeys: IssuableFilteredSearchTokenKeys.getKeys(),
>>>>>>> upstream/master
};
let vm;
......
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