another undo (#302)

This commit is contained in:
Will Chen
2025-06-01 00:44:33 -07:00
committed by GitHub
parent c0adf8d3f2
commit 0229f47f31

View File

@@ -22,4 +22,13 @@ test("undo", async ({ po }) => {
// Also, could be slow. // Also, could be slow.
timeout: 15_000, timeout: 15_000,
}); });
await po.clickUndo();
await expect(
iframe.contentFrame().getByText("Welcome to Your Blank App"),
).toBeVisible({
// Also, could be slow.
timeout: 15_000,
});
}); });