Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ your team down.

The `dom-testing-library` is a very light-weight solution for testing DOM nodes
(whether simulated with [`JSDOM`](https://github.com/jsdom/jsdom) as provided by
default with [jest][] or in the browser). The main utilities it provides involve
default with [Jest][] or in the browser). The main utilities it provides involve
querying the DOM for nodes in a way that's similar to how the user finds
elements on the page. In this way, the library helps ensure your tests give you
confidence in your UI code. The `dom-testing-library`'s primary guiding
Expand Down
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