remove tests for deleted reducer strings

pull/1537/head
Jade McGough 2017-05-25 14:14:22 -07:00
parent 49bf6818eb
commit 7d55dd6b5f
1 changed files with 0 additions and 10 deletions

View File

@ -39,14 +39,4 @@ describe('DataExplorer.Reducers.UI', () => {
expect(actual).to.deep.equal(expected)
})
it('can summon the overlay technology to write data', () => {
const actual = reducer(state, showWriteForm())
expect(actual.showWriteForm).to.equal(true)
})
it('can banish overlay technology', () => {
const actual = reducer(state, hideWriteForm())
expect(actual.showWriteForm).to.equal(false)
})
})