Commit 0ca3431e authored by Paul Kaplan's avatar Paul Kaplan

test: fix the new test for studio removeManager edge case

parent e66a31ab
...@@ -186,12 +186,11 @@ describe('removeManager', () => { ...@@ -186,12 +186,11 @@ describe('removeManager', () => {
const state = store.getState(); const state = store.getState();
// Manager count should still be updated // Manager count should still be updated
expect(selectStudioManagerCount(state)).toBe(98); expect(selectStudioManagerCount(state)).toBe(2);
// The removed manager isn't the current user, so manager permission should be unchanged // The removed manager isn't the current user, so manager permission should be unchanged
expect(state.studio.manager).toBe(false); expect(state.studio.manager).toBe(true);
// No change to the manager items list // No change to the manager items list
expect(managers.selector(state).items.length).toBe(1); expect(managers.selector(state).items.length).toBe(3);
expect(managers.selector(state).items[0].username).toBe('user1');
}); });
test('on error, promise rejects without any changing count or list', async () => { test('on error, promise rejects without any changing count or list', async () => {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment