Skip to content

Commit

Permalink
remove useless comment
Browse files Browse the repository at this point in the history
  • Loading branch information
levg34 committed Jan 11, 2024
1 parent b793719 commit d6fe013
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/test/Hidden.test.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import '@testing-library/jest-dom'
import { render, screen } from '@solidjs/testing-library'
import Hidden from '../src/cv-sections/Hidden' // assuming this is the file name of your component
import Hidden from '../src/cv-sections/Hidden'
import { createRoot } from 'solid-js'
import CartProvider, { useCart } from '../src/cart/CartProvider'
import LoginProvider, { useLogin } from '../src/login/LoginProvider'
Expand Down Expand Up @@ -106,7 +106,7 @@ describe('Hidden', () => {
// expect the chip to be disabled
compo.getByText(/added to cart/i).click()

// expect(screen.getByText(/added to cart/i)).toBeInTheDocument() // TODO: make this assertion pass
// expect(compo.getByText(/added to cart/i)).toBeInTheDocument() // TODO: make this assertion pass
})
})
})

0 comments on commit d6fe013

Please sign in to comment.