From e13bd3af67d14dc80d06f3a095b03f891fe6aaac Mon Sep 17 00:00:00 2001 From: Agniva De Sarker Date: Thu, 11 May 2023 20:24:27 +0530 Subject: [PATCH] MM-52212: Skip all sidebarCategory tests (#23375) We see more tests from the same file fail with the same error https://mattermost.atlassian.net/browse/MM-52212 ```release-note NONE ``` --- .../src/components/sidebar/sidebarCategory.test.tsx | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/webapp/boards/src/components/sidebar/sidebarCategory.test.tsx b/webapp/boards/src/components/sidebar/sidebarCategory.test.tsx index 0e39923a75..c61125a194 100644 --- a/webapp/boards/src/components/sidebar/sidebarCategory.test.tsx +++ b/webapp/boards/src/components/sidebar/sidebarCategory.test.tsx @@ -84,7 +84,8 @@ describe('components/sidebarCategory', () => { }, } - test('sidebar call hideSidebar', async () => { + // https://mattermost.atlassian.net/browse/MM-52212 + test.skip('sidebar call hideSidebar', async () => { const mockStore = configureStore([]) const store = mockStore(state) @@ -111,7 +112,8 @@ describe('components/sidebarCategory', () => { expect(container).toMatchSnapshot() }) - test('sidebar collapsed without active board', async () => { + // https://mattermost.atlassian.net/browse/MM-52212 + test.skip('sidebar collapsed without active board', async () => { const mockStore = configureStore([]) const store = mockStore(state) @@ -136,7 +138,8 @@ describe('components/sidebarCategory', () => { expect(container).toMatchSnapshot() }) - test('sidebar collapsed with active board in it', async () => { + // https://mattermost.atlassian.net/browse/MM-52212 + test.skip('sidebar collapsed with active board in it', async () => { const mockStore = configureStore([]) const store = mockStore(state) @@ -162,7 +165,8 @@ describe('components/sidebarCategory', () => { expect(container).toMatchSnapshot() }) - test('sidebar template close self', async () => { + // https://mattermost.atlassian.net/browse/MM-52212 + test.skip('sidebar template close self', async () => { const mockStore = configureStore([]) const store = mockStore(state)