From ccf27160065ed650733c47e9524445fdbfd16416 Mon Sep 17 00:00:00 2001 From: Christos Nasikas Date: Wed, 10 May 2023 18:00:50 +0300 Subject: [PATCH] Run the test multiple times --- .../cases/public/components/all_cases/all_cases_list.test.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/plugins/cases/public/components/all_cases/all_cases_list.test.tsx b/x-pack/plugins/cases/public/components/all_cases/all_cases_list.test.tsx index 49557e7d8a999e..41af06337b90a4 100644 --- a/x-pack/plugins/cases/public/components/all_cases/all_cases_list.test.tsx +++ b/x-pack/plugins/cases/public/components/all_cases/all_cases_list.test.tsx @@ -704,7 +704,7 @@ describe('AllCasesListGeneric', () => { }); }); - describe('Actions', () => { + describe.each(Array(50).fill(null))('Actions', () => { const updateCasesSpy = jest.spyOn(api, 'updateCases'); const deleteCasesSpy = jest.spyOn(api, 'deleteCases');