Skip to content

Commit

Permalink
Remove semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
jonrohan committed Apr 22, 2024
1 parent 0ce012a commit abd153f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions __tests__/index.js
Expand Up @@ -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')
})
})

0 comments on commit abd153f

Please sign in to comment.