diff --git a/packages/astro/test/astro-attrs.test.js b/packages/astro/test/astro-attrs.test.js index 4ee547d91d..b307a3f397 100644 --- a/packages/astro/test/astro-attrs.test.js +++ b/packages/astro/test/astro-attrs.test.js @@ -32,7 +32,10 @@ describe('Attributes', async () => { }; // cheerio will unescape the values, so checking that the url rendered unescaped to begin with has to be done manually - assert.equal(html.includes("https://example.com/api/og?title=hello&description=somedescription"), true); + assert.equal( + html.includes('https://example.com/api/og?title=hello&description=somedescription'), + true + ); for (const id of Object.keys(attrs)) { const { attribute, value } = attrs[id];