aboutsummaryrefslogtreecommitdiff
path: root/src/client/react/reducers/search.test.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/react/reducers/search.test.js')
-rw-r--r--src/client/react/reducers/search.test.js4
1 files changed, 0 insertions, 4 deletions
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',
],