Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

327
Views
Probando el componente de reacción en broma: ReferenceError: el acto no está definido

Tengo un componente y una prueba que falla. Recibo el error ReferenceError: el acto no está definido. ¿Alguna idea para una solución? He estado tratando de leer y arreglar esto yo mismo, pero aún no lo he logrado.

 export const useCounter = (initialValue = 0) => { const [counter, setCounter] = useState(initialValue) const add = useCallback((delta = 1) => setCounter(counter => counter + delta), [setCounter]) const substract = useCallback((delta = 1) => setCounter(counter => counter - delta), [setCounter]) return ( <> Count: {counter} {add, substract} </> ) }
 import { renderHook } from '@testing-library/react-hooks' import { useCounter } from '@/hooks/useCounter' describe('Testing useCounter hook', () => { it('should add +1 to counter', () => { const { result } = renderHook(useCounter) act(() => result.current.add()) expect(result.current.counter).toBe(1) }) it('should subtract -1 to counter', () => { const { result } = renderHook(useCounter) act(() => result.current.subtract()) expect(result.current.counter).toBe(-1) }) })
about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!