From abd153fccd4d58b7a8ab3774eb77889dc546b987 Mon Sep 17 00:00:00 2001 From: Jon Rohan Date: Mon, 22 Apr 2024 15:57:56 +0000 Subject: [PATCH] Remove semicolons --- __tests__/index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/__tests__/index.js b/__tests__/index.js index 63b5a33..3a0a17f 100644 --- a/__tests__/index.js +++ b/__tests__/index.js @@ -51,17 +51,17 @@ describe('stylelint-config', () => { }) it('resolves css files correctly', async () => { - const config = await stylelint.resolveConfig('./__fixtures__/good/example.css'); + const config = await stylelint.resolveConfig('./__fixtures__/good/example.css') expect(config).not.toHaveProperty('customSyntax') }) it('resolves tsx files correctly', async () => { - const config = await stylelint.resolveConfig('./__fixtures__/good/example.tsx'); + const config = await stylelint.resolveConfig('./__fixtures__/good/example.tsx') expect(config).toHaveProperty('customSyntax', 'postcss-styled-syntax') }) it('resolves scss files correctly', async () => { - const config = await stylelint.resolveConfig('./__fixtures__/good/example.scss'); + const config = await stylelint.resolveConfig('./__fixtures__/good/example.scss') expect(config).toHaveProperty('customSyntax', 'postcss-scss') }) })