Skip to content

findBy* typings: Remove Error as a possible return value #239

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 12, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions typings/queries.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export type FindAllByBoundAttribute = (
id: Matcher,
options?: MatcherOptions,
waitForElementOptions?: WaitForElementOptions
) => Promise<HTMLElement[]> | Error
) => Promise<HTMLElement[]>

export type GetByBoundAttribute = (
container: HTMLElement,
Expand All @@ -32,7 +32,7 @@ export type FindByBoundAttribute = (
id: Matcher,
options?: MatcherOptions,
waitForElementOptions?: WaitForElementOptions
) => Promise<HTMLElement> | Error
) => Promise<HTMLElement>

export type QueryByText = (
container: HTMLElement,
Expand All @@ -51,7 +51,7 @@ export type FindAllByText = (
id: Matcher,
options?: SelectorMatcherOptions,
waitForElementOptions?: WaitForElementOptions
) => Promise<HTMLElement[]> | Error
) => Promise<HTMLElement[]>

export type GetByText = (
container: HTMLElement,
Expand All @@ -64,7 +64,7 @@ export type FindByText = (
id: Matcher,
options?: SelectorMatcherOptions,
waitForElementOptions?: WaitForElementOptions
) => Promise<HTMLElement> | Error
) => Promise<HTMLElement>

export const getByLabelText: GetByText
export const getAllByLabelText: AllByText
Expand Down