diff --git a/test/router.js b/test/router.js index 26bead6e58d2f8..91c1db2d1435fc 100644 --- a/test/router.js +++ b/test/router.js @@ -17,7 +17,7 @@ async function checkRSS(response) { expect(date).toEqual(expect.any(String)); expect(Date.parse(date)).toEqual(expect.any(Number)); expect(new Date() - new Date(date)).toBeGreaterThan(-1000 * 60 * 60 * 24 * 5); - expect(new Date() - new Date(date)).toBeLessThan(1000 * 60 * 60 * 24 * 30 * 12 * 5); + expect(new Date() - new Date(date)).toBeLessThan(1000 * 60 * 60 * 24 * 30 * 12 * 10); }; const parsed = await parser.parseString(response.text);