(currentNow, milliseconds)
| 18 | } |
| 19 | |
| 20 | function clockTick(currentNow, milliseconds) { |
| 21 | Date.now = function() { |
| 22 | return currentNow + milliseconds; |
| 23 | }; |
| 24 | d3Timer.flush(); |
| 25 | } |
| 26 | |
| 27 | // Using the methodology from http://eng.wealthfront.com/2017/10/26/testing-d3-transitions/ |
| 28 | module.exports = function checkTransition(gd, mock, animateOpts, transitionOpts, tests) { |
no outgoing calls
no test coverage detected
searching dependent graphs…