Skip to content

Commit

Permalink
Specify stepEmitter: null, see phetsims/function-builder#120
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed Nov 1, 2018
1 parent bd1f1f6 commit 11a0c80
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions js/AnimationTests.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ define( function( require ) {
'use strict';

// modules
var Animation = require( 'Animation' );
var Animation = require( 'TWIXT/Animation' );
var NumberProperty = require( 'AXON/NumberProperty' );

QUnit.module( 'Animation' );
Expand All @@ -26,7 +26,9 @@ define( function( require ) {

// Options for the one target to change
property: numberProperty,
to: targetValue
to: targetValue,

stepEmitter: null
} );
animation.start();
for ( var i = 0; i < 10; i++ ) {
Expand Down

0 comments on commit 11a0c80

Please sign in to comment.