aboutsummaryrefslogtreecommitdiff
path: root/src/client/react/reducers
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/react/reducers')
-rw-r--r--src/client/react/reducers/search.js2
-rw-r--r--src/client/react/reducers/search.test.js4
2 files changed, 0 insertions, 6 deletions
diff --git a/src/client/react/reducers/search.js b/src/client/react/reducers/search.js
index 29d0e5c..2a7e7a5 100644
--- a/src/client/react/reducers/search.js
+++ b/src/client/react/reducers/search.js
@@ -2,7 +2,6 @@ import fuzzy from 'fuzzy';
import users from '../users';
const DEFAULT_STATE = {
- input: '',
results: [
's/18562',
],
@@ -41,7 +40,6 @@ const search = (state = DEFAULT_STATE, action) => {
return {
...state,
- input: action.typedValue,
results,
selectedResult,
isExactMatch,
diff --git a/src/client/react/reducers/search.test.js b/src/client/react/reducers/search.test.js
index 13f79d2..e0ca18e 100644
--- a/src/client/react/reducers/search.test.js
+++ b/src/client/react/reducers/search.test.js
@@ -19,7 +19,6 @@ describe('reducers', () => {
describe('SEARCH/INPUT_CHANGE', () => {
it('Returns no results when nothing is typed in', () => {
expect(search(undefined, inputChange(''))).toEqual({
- input: '',
results: [],
selectedResult: null,
isExactMatch: false,
@@ -28,7 +27,6 @@ describe('reducers', () => {
it('Returns no results when a space is typed in', () => {
expect(search(undefined, inputChange(' '))).toEqual({
- input: ' ',
results: [],
selectedResult: null,
isExactMatch: false,
@@ -37,7 +35,6 @@ describe('reducers', () => {
it('Preforms a basic search, only returning four results', () => {
expect(search(undefined, inputChange('18'))).toEqual({
- input: '18',
results: [
's/18561',
's/18562',
@@ -51,7 +48,6 @@ describe('reducers', () => {
it('Selects the first result and sets isExactMatch to true when there is an exact match', () => {
expect(search(undefined, inputChange('18561'))).toEqual({
- input: '18561',
results: [
's/18561',
],