Skip to content

Commit

Permalink
[ci] format
Browse files Browse the repository at this point in the history
  • Loading branch information
lilnasy authored and astrobot-houston committed Mar 13, 2024
1 parent 8edc42a commit 771433f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/astro/test/astro-attrs.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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];
Expand Down

0 comments on commit 771433f

Please sign in to comment.