diff options
author | 2024-02-06 14:57:32 +0000 | |
---|---|---|
committer | 2024-02-06 14:57:32 +0000 | |
commit | 56db6ae24686c3860743c7d55eaf14cd9e98be6b (patch) | |
tree | 3cf8517614e167e2b920f5b29735a4e403a8aed9 | |
parent | 81acac24a3cac5a9143155c1d9f838ea84a70421 (diff) | |
download | astro-56db6ae24686c3860743c7d55eaf14cd9e98be6b.tar.gz astro-56db6ae24686c3860743c7d55eaf14cd9e98be6b.tar.zst astro-56db6ae24686c3860743c7d55eaf14cd9e98be6b.zip |
[ci] format
-rw-r--r-- | packages/astro/e2e/content-collections.test.js | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/packages/astro/e2e/content-collections.test.js b/packages/astro/e2e/content-collections.test.js index 344a27e99..eaa40d1b8 100644 --- a/packages/astro/e2e/content-collections.test.js +++ b/packages/astro/e2e/content-collections.test.js @@ -24,9 +24,6 @@ test.describe('Content Collections', () => { const h1 = page.locator('#my-heading'); - await expect(h1, 'should have green color').toHaveCSS( - 'color', - 'rgb(0, 128, 0)' - ); + await expect(h1, 'should have green color').toHaveCSS('color', 'rgb(0, 128, 0)'); }); }); |