bundleActions has always been flakey, poke it but I have no good idea and cannot replicate locally

This commit is contained in:
Paul Fitzpatrick 2024-10-10 16:22:30 -04:00
parent ba3ccf90ce
commit ed7d2cecb7
No known key found for this signature in database
GPG Key ID: 07F16BF3214888F6

View File

@ -1464,6 +1464,7 @@ export function revertChanges(test: () => Promise<void>, invariant: () => any =
export async function redo(optCount: number = 1, optTimeout?: number) { export async function redo(optCount: number = 1, optTimeout?: number) {
for (let i = 0; i < optCount; ++i) { for (let i = 0; i < optCount; ++i) {
await driver.find('.test-redo').doClick(); await driver.find('.test-redo').doClick();
await waitForServer(optTimeout);
} }
await waitForServer(optTimeout); await waitForServer(optTimeout);
} }