diff --git a/editor.planx.uk/src/@planx/components/DateInput/Editor.test.tsx b/editor.planx.uk/src/@planx/components/DateInput/Editor.test.tsx index 5a866e2e82..0b7d51ebc3 100644 --- a/editor.planx.uk/src/@planx/components/DateInput/Editor.test.tsx +++ b/editor.planx.uk/src/@planx/components/DateInput/Editor.test.tsx @@ -7,6 +7,9 @@ import { setup } from "testUtils"; import DateInputComponent from "./Editor"; +// double regular timeout for tests in this file, as they regularly timeout on CI +jest.setTimeout(10000); + const minError = "Min must be less than max"; const maxError = "Max must be greater than min"; const invalidError = "Enter a valid date in DD.MM.YYYY format"; diff --git a/editor.planx.uk/src/@planx/components/NumberInput/Editor.tsx b/editor.planx.uk/src/@planx/components/NumberInput/Editor.tsx index 8d893e2d28..548fa12fd8 100644 --- a/editor.planx.uk/src/@planx/components/NumberInput/Editor.tsx +++ b/editor.planx.uk/src/@planx/components/NumberInput/Editor.tsx @@ -70,7 +70,7 @@ export default function NumberInputComponent(props: Props): FCReturn {