O Brasil é caramelo
Texto auxiliar ao Switch
);
const labelElement = screen.getByText("O Brasil é caramelo");
expect(labelElement).toBeInTheDocument();
const helperTextElement = screen.getByText("Texto auxiliar ao Switch");
expect(helperTextElement).toBeInTheDocument();
const switchElement = screen.getByRole("switch");
expect(switchElement).toBeInTheDocument();
expect(component.baseElement).toMatchSnapshot();
});
});