Skip to content

Commit

Permalink
fix error message puppeteer spec
Browse files Browse the repository at this point in the history
  • Loading branch information
philiplehmann committed Jan 6, 2025
1 parent 4b9d1d4 commit dca688d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/puppeteer/src/test/puppeteer.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ describe('puppeteer', { timeout: 120_000 }, () => {

expect(response.statusCode).toBe(400);
expect(text).toBe(
'{"issues":[{"code":"invalid_literal","expected":"application/json","path":["content-type"],"message":"Invalid literal value, expected \\"application/json\\""}],"name":"ZodError"}',
'{"issues":[{"code":"invalid_type","expected":"string","received":"undefined","path":["content-type"],"message":"Required"}],"name":"ZodError"}',
);
});

Expand Down

0 comments on commit dca688d

Please sign in to comment.