Skip to content
Merged
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
4 changes: 2 additions & 2 deletions tests/e2e/spec-coverage/catalog-ratings.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ async function newAnonymousContext(): Promise<APIRequestContext> {

/** Open the seeded module's detail page and wait for the reviews panel. */
async function openModuleReviews(page: Page): Promise<void> {
await page.goto(`${APP_BASE.replace(/\/$/, "")}/modules/${moduleUuid}`, {
await page.goto(`${APP_BASE.replace(/\/$/, '')}/modules/${moduleUuid}`, {
waitUntil: 'domcontentloaded',
})
await page
Expand Down Expand Up @@ -379,7 +379,7 @@ test('reviews: a module with no approved reviews shows the empty aggregate, not
})
expect(uuid, 'isolated module fixture has no uuid').not.toBe('')

await page.goto(`${APP_BASE.replace(/\/$/, "")}/modules/${uuid}`, {
await page.goto(`${APP_BASE.replace(/\/$/, '')}/modules/${uuid}`, {
waitUntil: 'domcontentloaded',
})
await page
Expand Down
Loading