0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-01-27 22:19:04 -05:00

[ci] format

This commit is contained in:
Alex Nguyen 2024-03-13 16:55:14 +00:00 committed by astrobot-houston
parent 8edc42aa7c
commit 771433fe24

View file

@ -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];