Fix receiveExpiredTags not always called #73759
Build #20241211.10 had test failures
Details
- Failed: 431 (92.89%, 0 new, 95 recurring)
- Passed: 10 (2.16%)
- Other: 23 (4.96%)
- Total: 464
Annotations
Check failure on line 6460 in Build log
azure-pipelines / azure next.js
Build log #L6460
Cmd.exe exited with code '1'.
Check failure on line 1 in app dir - basic › should work for catch-all edge page
azure-pipelines / azure next.js
app dir - basic › should work for catch-all edge page
Test failed
Raw output
● app dir - basic › should work for catch-all edge page
SyntaxError: Unexpected end of JSON input
at JSON.parse (<anonymous>)
112 | const $ = cheerio.load(html)
113 |
> 114 | expect(JSON.parse($('#params').text())).toEqual({
| ^
115 | slug: ['hello123'],
116 | })
117 | })
at Object.parse (e2e/app-dir/app/index.test.ts:114:17)
azure-pipelines / azure next.js
app dir - basic › should return normalized dynamic route params for catch-all edge page
Test failed
Raw output
● app dir - basic › should return normalized dynamic route params for catch-all edge page
SyntaxError: Unexpected end of JSON input
at JSON.parse (<anonymous>)
121 | const $ = cheerio.load(html)
122 |
> 123 | expect(JSON.parse($('#params').text())).toEqual({
| ^
124 | slug: ['a', 'b', 'c'],
125 | })
126 | })
at Object.parse (e2e/app-dir/app/index.test.ts:123:17)
Check failure on line 1 in app dir - basic › should have correct searchParams and params (client)
azure-pipelines / azure next.js
app dir - basic › should have correct searchParams and params (client)
Test failed
Raw output
● app dir - basic › should have correct searchParams and params (client)
SyntaxError: Unexpected end of JSON input
at JSON.parse (<anonymous>)
146 | const $ = cheerio.load(html)
147 |
> 148 | expect(JSON.parse($('#id-page-params').text())).toEqual({
| ^
149 | category: 'category-1',
150 | id: 'id-2',
151 | })
at Object.parse (e2e/app-dir/app/index.test.ts:148:17)
Check failure on line 1 in app dir - basic › should have correct searchParams and params (server)
azure-pipelines / azure next.js
app dir - basic › should have correct searchParams and params (server)
Test failed
Raw output
● app dir - basic › should have correct searchParams and params (server)
SyntaxError: Unexpected end of JSON input
at JSON.parse (<anonymous>)
130 | const $ = cheerio.load(html)
131 |
> 132 | expect(JSON.parse($('#id-page-params').text())).toEqual({
| ^
133 | category: 'category-1',
134 | id: 'id-2',
135 | })
at Object.parse (e2e/app-dir/app/index.test.ts:132:17)