Explorar el Código

Remove unused function in test

Garrett Johnson hace 4 años
padre
commit
ed83c2da09
Se han modificado 1 ficheros con 0 adiciones y 1 borrados
  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', () => {