Skip to content

Commit 4b5c4b9

Browse files
committed
chore: fix lint error
1 parent d980840 commit 4b5c4b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/__tests__/disappearance.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ test('waits for the data to be loaded', async () => {
1111

1212
// Following line reads as follows:
1313
// "Wait until element with text 'Loading...' is gone."
14-
await waitForElementToBeRemoved(getByText('Loading...'))
14+
await waitForElementToBeRemoved(queryByText('Loading...'))
1515
// It is equivalent to:
1616
//
1717
// await waitFor(() => {

0 commit comments

Comments
 (0)