I have multiple buttons in my component and all of them should be disabled.
const buttons = screen.getAllByRole('button');
expect(ALL BUTTONS).toHaveAttribute('disabled'); // I want something like this.
How can we write this in the most convenient way?
Iterate the buttons array and run the expect for each one
buttons.forEach((button) => {
expect(button).toHaveAttribute('disabled');
})