GithubHelp home page GithubHelp logo

Comments (2)

42shadow42 avatar 42shadow42 commented on April 20, 2024 1

I think this is a feature: https://reactjs.org/blog/2022/03/29/react-v18.html#new-feature-automatic-batching

from react.

skahack avatar skahack commented on April 20, 2024

Thank you. I was able to get it to behave as before.
I don't know if this is the spec, but I'm going to close the Issue since it seems to have already been discussed.

https://codesandbox.io/p/sandbox/test-issue-repro-react18-resolved-5uxc9h

--- a.js        2023-03-02 13:52:47.000000000 +0900
+++ b.js        2023-03-02 13:52:59.000000000 +0900
@@ -1,27 +1,22 @@
 let TestRenderer
 let React
 let target
-let act
+
+global.IS_REACT_ACT_ENVIRONMENT = false
 
 beforeAll(() => {
   jest.useFakeTimers()
   TestRenderer = require('react-test-renderer')
   React = require('react')
   target = require('./hooks')
-  act = TestRenderer.act
 })
 
 it('', () => {
   const result = renderHook(target.useHooks)
 
-  act(() => {
-    jest.advanceTimersByTime(0)
-  })
+  jest.advanceTimersByTime(0)
   expect(target.count).toBe(0)
-
-  act(() => {
-    jest.advanceTimersByTime(500)
-  })
+  jest.advanceTimersByTime(501)
 
   expect(target.count).toBe(5)
   expect(result.current).toBe(6)

from react.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.