Skip to content

Commit

Permalink
fix flaky test
Browse files Browse the repository at this point in the history
  • Loading branch information
sokra committed Apr 11, 2024
1 parent eed0481 commit 63b4497
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ describe('app-dir assetPrefix with basePath handling', () => {

expect(bundles.length).toBeGreaterThan(0)

bundles.forEach(async (src) => {
for (const src of bundles) {
const { status } = await next.fetch(decodeURI(src))

expect(status).toBe(200)
})
}
})
})

0 comments on commit 63b4497

Please sign in to comment.