Skip to content
Snippets Groups Projects
Commit 6ac7dbb6 authored by Petrochenkov, Gregory Paul's avatar Petrochenkov, Gregory Paul
Browse files

UI spec change

parent 0032a281
No related branches found
No related tags found
No related merge requests found
......@@ -4,17 +4,14 @@ describe('uiReducer', () => {
it('Handles RESIZE_UI', () => {
expect(uiReducer({
width: 50,
windowWidth: 100,
hydrographBrushOffset: undefined
width: 50
}, {
type: 'RESIZE_UI',
width: 20,
windowWidth: 50
})).toEqual({
width: 20,
windowWidth: 50,
hydrographBrushOffset: undefined
windowWidth: 50
});
});
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment