diff --git a/src/Pages/Public/MemberShip/index.test.jsx b/src/Pages/Public/MemberShip/index.test.jsx index 4e62c8f..f341c9d 100644 --- a/src/Pages/Public/MemberShip/index.test.jsx +++ b/src/Pages/Public/MemberShip/index.test.jsx @@ -302,9 +302,9 @@ describe("MemberShip Component", () => { ); - // 27 Entradas (não contando datas) antes da abertura do formulario de dependente + // antesMerge(82) 27 - depoisMerge(82) 28 Entradas (não contando datas) antes da abertura do formulario de dependente let inputs = container.querySelectorAll(".MuiFilledInput-input"); - expect(inputs).toHaveLength(27); + expect(inputs).toHaveLength(28); // Clicar no botão para abrir const icon = screen.getByTestId("AddCircleOutlineIcon"); @@ -322,7 +322,7 @@ describe("MemberShip Component", () => { // Verificar os novos campos (4 novos + 1 de Data) inputs = container.querySelectorAll(".MuiFilledInput-input"); - expect(inputs).toHaveLength(31); + expect(inputs).toHaveLength(32); //mudou de 31 no merge(82) //Selecionar ultimas entradas inputs = Array.from(inputs).slice(-4);