Skip to content

Commit

Permalink
✅ Fix typo in selector
Browse files Browse the repository at this point in the history
  • Loading branch information
zivavu committed May 23, 2024
1 parent c414cbd commit 754dc3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tests/algoliaSearch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ fixture('Search users').page(BASE_URL);

test('first search result contains user info and is clickable', async (t) => {
const searchInput = Selector('[data-testid="search-input"]');
const userResultsLinks = Selector('a[data-testid^="search-result-list-item-"]');
const userResultsLinks = Selector('[data-testid^="search-result-list-item-"]');

await t.expect(searchInput.exists).ok({ timeout: 2000 });

Expand Down

0 comments on commit 754dc3e

Please sign in to comment.