Procházet zdrojové kódy

Remove unused function in test

Garrett Johnson před 4 roky
rodič
revize
ed83c2da09
1 změnil soubory, kde provedl 0 přidání a 1 odebrání
  1. 0 1
      test/PriorityQueue.test.js

+ 0 - 1
test/PriorityQueue.test.js

@@ -1,7 +1,6 @@
 import { PriorityQueue } from '../src/utilities/PriorityQueue.js';
 
 const nextFrame = () => new Promise( resolve => requestAnimationFrame( resolve ) );
-const nextTick = () => new Promise( resolve => process.nextTick( resolve ) );
 
 describe( 'PriorityQueue', () => {