Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesPeck committed Nov 19, 2024
1 parent a3ed25c commit da2a64c
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions tests/routes/explorer/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,11 @@ userTest.describe('Explorer for authenticated users', () => {

// Then
await expect(page.locator('#facet-side-bar')).toBeVisible();
expect(page
.getByTestId('accordion-item')
.first()
.getByTestId(`facet-${facetResponseWithZeroCount[0].name}-label`)
expect(
page
.getByTestId('accordion-item')
.first()
.getByTestId(`facet-${facetResponseWithZeroCount[0].name}-label`),
).not.toBeVisible();
});
});
Expand Down

0 comments on commit da2a64c

Please sign in to comment.