diff options
-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)'); }); }); |