Adding a bigger timeout in one E2E test

This commit is contained in:
David Négrier 2022-04-22 16:48:49 +02:00
parent 4ca72af09e
commit e93d6923c2

View File

@ -83,7 +83,9 @@ test.describe('Variables', () => {
); );
// Redis will reconnect automatically and will store the variable on reconnect! // Redis will reconnect automatically and will store the variable on reconnect!
// So we should see the new value. // So we should see the new value.
await expect(textField).toHaveValue('value set while Redis stopped'); await expect(textField).toHaveValue('value set while Redis stopped', {
timeout: 60000,
});
// Now, let's try to kill / reboot the back // Now, let's try to kill / reboot the back
await rebootBack(); await rebootBack();