From f927e6d0d138824e72e847b9595b56cf4c30aac6 Mon Sep 17 00:00:00 2001 From: Abdelalim-dev Date: Mon, 3 Jul 2023 18:44:19 +0100 Subject: [PATCH] Correct second test description --- examples/redux/components/TodoList.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/redux/components/TodoList.test.js b/examples/redux/components/TodoList.test.js index cd7f1c86b..268aa2566 100644 --- a/examples/redux/components/TodoList.test.js +++ b/examples/redux/components/TodoList.test.js @@ -19,7 +19,7 @@ test('it should execute with a store with 4 elements', () => { expect(todoElems).toHaveLength(4); }); -test('should execute with 2 elements and end up with 1 after delete', () => { +test('should display 4 elements and end up with 3 after delete', () => { renderWithRedux(, { initialState }); const todoElems = screen.getAllByText(/something/i);