Update mock tests to use locator.fill instead of .type

This commit is contained in:
trevor-signal 2024-04-08 12:58:08 -04:00 committed by GitHub
parent 09f1c15a3e
commit 2497d0d8a1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 8 deletions

View file

@ -32,14 +32,16 @@ export async function typeIntoInput(
currentValue = (await input.textContent()) ?? '';
}
await input.type(text, { delay: 30 });
const newValue = `${currentValue}${text}`;
await input.fill(newValue);
// Wait to ensure that the input (and react state controlling it) has actually
// updated with the right value
if (isInputElement) {
await expect(input).toHaveValue(`${currentValue}${text}`);
await expect(input).toHaveValue(newValue);
} else {
await input.locator(`:text("${currentValue}${text}")`).waitFor();
await input.locator(`:text("${newValue}")`).waitFor();
}
}