diff --git a/typings/index.d.ts b/typings/index.d.ts index 8c483b40b..074a178aa 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -70,7 +70,7 @@ interface QueryByAPI { ) => ReactTestInstance | null; queryByDisplayValue: (value: string | RegExp) => ReactTestInstance | null; queryByTestId: (testID: string) => ReactTestInstance | null; - queryAllByTestId: (testID: string) => Array | null; + queryAllByTestId: (testID: string) => Array | []; queryAllByText: (text: string | RegExp) => Array | []; queryAllByPlaceholderText: ( placeholder: string | RegExp