Skip to content

Commit b15d637

Browse files
Merge branch 'canary' into feedthejim/fix-import-map
2 parents e24481f + c628076 commit b15d637

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

test/integration/middleware-dev-errors/test/index.test.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -249,9 +249,10 @@ describe('Middleware development errors', () => {
249249
it('logs the error correctly', async () => {
250250
await fetchViaHTTP(context.appPort, '/')
251251
expect(context.logs.output).toContain(`Expected '{', got '}'`)
252-
expect(context.logs.output.split(`Expected '{', got '}'`).length).toEqual(
253-
2
254-
)
252+
// TODO: investigate occasional duplicate errors causing flakiness
253+
// expect(context.logs.output.split(`Expected '{', got '}'`).length).toEqual(
254+
// 2
255+
// )
255256
})
256257

257258
it('renders the error correctly and recovers', async () => {

0 commit comments

Comments
 (0)