Skip to content
Snippets Groups Projects
Commit 85a65da7 authored by Andrew Winget (Standard)'s avatar Andrew Winget (Standard)
Browse files

fix renamed test variables

parent dbc872b3
No related branches found
No related tags found
No related merge requests found
...@@ -254,7 +254,7 @@ describe('windows reducer', () => { ...@@ -254,7 +254,7 @@ describe('windows reducer', () => {
}); });
}); });
it('should handle SET_WINDOW_SIZE', () => { it('should handle SET_WINDOW_SIZE', () => {
expect(reducer({ expect(windowsReducer({
abc123: { abc123: {
id: 'abc123', id: 'abc123',
}, },
...@@ -286,7 +286,7 @@ describe('windows reducer', () => { ...@@ -286,7 +286,7 @@ describe('windows reducer', () => {
}); });
}); });
it('should handle UPDATE_WINDOW_POSITION', () => { it('should handle UPDATE_WINDOW_POSITION', () => {
expect(reducer({ expect(windowsReducer({
abc123: { abc123: {
id: 'abc123', id: 'abc123',
}, },
......
...@@ -43,7 +43,7 @@ describe('workspace reducer', () => { ...@@ -43,7 +43,7 @@ describe('workspace reducer', () => {
}); });
}); });
it('should handle SET_WORKSPACE_VIEWPORT_POSITION', () => { it('should handle SET_WORKSPACE_VIEWPORT_POSITION', () => {
expect(reducer([], { expect(workspaceReducer([], {
type: ActionTypes.SET_WORKSPACE_VIEWPORT_POSITION, type: ActionTypes.SET_WORKSPACE_VIEWPORT_POSITION,
payload: { payload: {
position: { position: {
...@@ -59,7 +59,7 @@ describe('workspace reducer', () => { ...@@ -59,7 +59,7 @@ describe('workspace reducer', () => {
}); });
}); });
it('should handle TOGGLE_WORKSPACE_EXPOSE_MODE', () => { it('should handle TOGGLE_WORKSPACE_EXPOSE_MODE', () => {
expect(reducer([], { expect(workspaceReducer([], {
type: ActionTypes.TOGGLE_WORKSPACE_EXPOSE_MODE, type: ActionTypes.TOGGLE_WORKSPACE_EXPOSE_MODE,
})).toEqual({ })).toEqual({
exposeModeOn: true, exposeModeOn: true,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment