augmente le debounce des champs de saisi, afin de ne pas avoir d'effet bloquant

pull/1060/head
Johan Girod 2020-06-03 10:25:53 +02:00
parent adc8a6e291
commit 9f119b4fed
3 changed files with 3 additions and 3 deletions

View File

@ -20,7 +20,7 @@ describe('Simulateurs', function() {
}
cy.get(inputSelector).each((testedInput, i) => {
cy.wrap(testedInput).type('{selectall}60000')
cy.wait(800)
cy.wait(1500)
cy.contains('Cotisations')
cy.get(inputSelector).each(($input, j) => {
const val = $input.val().replace(/[\s,.]/g, '')

View File

@ -225,7 +225,7 @@ function TargetInputOrValue({
color: colors.textColor,
borderColor: colors.textColor
}}
debounce={600}
debounce={1000}
name={target.dottedName}
value={value}
className={

View File

@ -113,7 +113,7 @@ export default function RuleInput({
<CurrencyInput
{...commonProps}
language={language}
debounce={600}
debounce={1000}
value={value as string}
name={dottedName}
className="targetInput"