fix: remove test (#188)

This commit is contained in:
connorhaugh
2023-01-11 16:53:16 -05:00
committed by GitHub
parent d23a790ad2
commit 9b2e284ee3

View File

@@ -41,14 +41,6 @@ describe('problem reducer', () => {
});
});
});
describe('setEnableTypeSelection', () => {
it('sets problemType to null', () => {
expect(reducer(testingState, actions.setEnableTypeSelection())).toEqual({
...testingState,
problemType: null,
});
});
});
describe('updateField', () => {
it('sets given parameter', () => {
const payload = { problemType: 'soMePRoblEMtYPe' };