@@ -18,6 +18,8 @@ describe('SimpleEventPlugin', function () {
18
18
19
19
let onClick ;
20
20
let container ;
21
+ let assertLog ;
22
+ let waitForAll ;
21
23
22
24
function expectClickThru ( element ) {
23
25
element . click ( ) ;
@@ -43,6 +45,10 @@ describe('SimpleEventPlugin', function () {
43
45
ReactDOMClient = require ( 'react-dom/client' ) ;
44
46
Scheduler = require ( 'scheduler' ) ;
45
47
48
+ const InternalTestUtils = require ( 'internal-test-utils' ) ;
49
+ assertLog = InternalTestUtils . assertLog ;
50
+ waitForAll = InternalTestUtils . waitForAll ;
51
+
46
52
onClick = jest . fn ( ) ;
47
53
} ) ;
48
54
@@ -222,12 +228,12 @@ describe('SimpleEventPlugin', function () {
222
228
223
229
ReactDOM . render ( < Button /> , container ) ;
224
230
expect ( button . textContent ) . toEqual ( 'Count: 0' ) ;
225
- expect ( Scheduler ) . toHaveYielded ( [ ] ) ;
231
+ assertLog ( [ ] ) ;
226
232
227
233
click ( ) ;
228
234
229
235
// There should be exactly one update.
230
- expect ( Scheduler ) . toHaveYielded ( [ 'didUpdate - Count: 3' ] ) ;
236
+ assertLog ( [ 'didUpdate - Count: 3' ] ) ;
231
237
expect ( button . textContent ) . toEqual ( 'Count: 3' ) ;
232
238
} ) ;
233
239
@@ -240,6 +246,10 @@ describe('SimpleEventPlugin', function () {
240
246
ReactDOMClient = require ( 'react-dom/client' ) ;
241
247
Scheduler = require ( 'scheduler' ) ;
242
248
249
+ const InternalTestUtils = require ( 'internal-test-utils' ) ;
250
+ assertLog = InternalTestUtils . assertLog ;
251
+ waitForAll = InternalTestUtils . waitForAll ;
252
+
243
253
act = require ( 'jest-react' ) . act ;
244
254
} ) ;
245
255
@@ -274,10 +284,10 @@ describe('SimpleEventPlugin', function () {
274
284
// Initial mount
275
285
root . render ( < Button /> ) ;
276
286
// Should not have flushed yet because it's async
277
- expect ( Scheduler ) . toHaveYielded ( [ ] ) ;
287
+ assertLog ( [ ] ) ;
278
288
expect ( button ) . toBe ( undefined ) ;
279
289
// Flush async work
280
- expect ( Scheduler ) . toFlushAndYield ( [ 'render button: enabled' ] ) ;
290
+ await waitForAll ( [ 'render button: enabled' ] ) ;
281
291
282
292
function click ( ) {
283
293
const event = new MouseEvent ( 'click' , {
@@ -292,7 +302,7 @@ describe('SimpleEventPlugin', function () {
292
302
293
303
// Click the button to trigger the side-effect
294
304
await act ( async ( ) => click ( ) ) ;
295
- expect ( Scheduler ) . toHaveYielded ( [
305
+ assertLog ( [
296
306
// The handler fired
297
307
'Side-effect' ,
298
308
// The component re-rendered synchronously, even in concurrent mode.
@@ -301,7 +311,7 @@ describe('SimpleEventPlugin', function () {
301
311
302
312
// Click the button again
303
313
click ( ) ;
304
- expect ( Scheduler ) . toHaveYielded ( [
314
+ assertLog ( [
305
315
// The event handler was removed from the button, so there's no effect.
306
316
] ) ;
307
317
@@ -312,7 +322,7 @@ describe('SimpleEventPlugin', function () {
312
322
click ( ) ;
313
323
click ( ) ;
314
324
click ( ) ;
315
- expect ( Scheduler ) . toFlushAndYield ( [ ] ) ;
325
+ await waitForAll ( [ ] ) ;
316
326
} ) ;
317
327
318
328
// NOTE: This test was written for the old behavior of discrete updates,
@@ -345,7 +355,7 @@ describe('SimpleEventPlugin', function () {
345
355
// Should not have flushed yet because it's async
346
356
expect ( button ) . toBe ( undefined ) ;
347
357
// Flush async work
348
- Scheduler . unstable_flushAll ( ) ;
358
+ await waitForAll ( [ ] ) ;
349
359
expect ( button . textContent ) . toEqual ( 'Count: 0' ) ;
350
360
351
361
function click ( ) {
@@ -373,7 +383,7 @@ describe('SimpleEventPlugin', function () {
373
383
await act ( async ( ) => click ( ) ) ;
374
384
375
385
// Flush the remaining work
376
- Scheduler . unstable_flushAll ( ) ;
386
+ await waitForAll ( [ ] ) ;
377
387
// The counter should equal the total number of clicks
378
388
expect ( button . textContent ) . toEqual ( 'Count: 7' ) ;
379
389
} ) ;
0 commit comments