fix linting

This commit is contained in:
mahula 2025-02-14 21:54:58 +01:00
parent e75602d365
commit 0b509d1963
2 changed files with 2 additions and 3 deletions

View File

@ -6,6 +6,6 @@ export default defineConfig({
framework: 'react',
bundler: 'vite',
},
specPattern: ['**/**/*.cy.{ts,tsx}']
specPattern: ['**/**/*.cy.{ts,tsx}'],
},
});
})

View File

@ -4,7 +4,6 @@ import { mount } from 'cypress/react'
import { TextInput } from './TextInput'
describe('<TextInput />', () => {
it('renders with default props', () => {
mount(<TextInput />)
cy.get('input').should('have.attr', 'type', 'text')