diff --git a/cypress.config.ts b/cypress.config.ts
index ce65c635..5db7fe24 100644
--- a/cypress.config.ts
+++ b/cypress.config.ts
@@ -6,6 +6,6 @@ export default defineConfig({
framework: 'react',
bundler: 'vite',
},
- specPattern: ['**/**/*.cy.{ts,tsx}']
+ specPattern: ['**/**/*.cy.{ts,tsx}'],
},
-});
+})
diff --git a/src/Components/Input/TextInput.cy.tsx b/src/Components/Input/TextInput.cy.tsx
index e2dda0fe..83b6263a 100644
--- a/src/Components/Input/TextInput.cy.tsx
+++ b/src/Components/Input/TextInput.cy.tsx
@@ -4,7 +4,6 @@ import { mount } from 'cypress/react'
import { TextInput } from './TextInput'
describe('', () => {
-
it('renders with default props', () => {
mount()
cy.get('input').should('have.attr', 'type', 'text')