From 0b509d1963565c211e09b343b9095afe7132be1b Mon Sep 17 00:00:00 2001 From: mahula Date: Fri, 14 Feb 2025 21:54:58 +0100 Subject: [PATCH] fix linting --- cypress.config.ts | 4 ++-- src/Components/Input/TextInput.cy.tsx | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) 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')