await Promise.all(
    expectNewPatches.map(async (item, index) => {
      const currentElement = page.getByTestId("patch-row").nth(index);
      await expect(currentElement).toContainText(item.op);
      await expect(currentElement).toContainText(item.path);