File tree 2 files changed +9
-12
lines changed
2 files changed +9
-12
lines changed Original file line number Diff line number Diff line change @@ -180,13 +180,13 @@ describe('select box and lasso', function() {
180
180
pointNumber : 0 ,
181
181
x : 0.002 ,
182
182
y : 16.25 ,
183
- identifier : undefined
183
+ id : undefined
184
184
} , {
185
185
curveNumber : 0 ,
186
186
pointNumber : 1 ,
187
187
x : 0.004 ,
188
188
y : 12.5 ,
189
- identifier : undefined
189
+ id : undefined
190
190
} ] , 'with the correct selecting points' ) ;
191
191
assertRange ( selectingData . range , {
192
192
x : [ 0.002000 , 0.0046236 ] ,
@@ -199,13 +199,13 @@ describe('select box and lasso', function() {
199
199
pointNumber : 0 ,
200
200
x : 0.002 ,
201
201
y : 16.25 ,
202
- identifier : undefined
202
+ id : undefined
203
203
} , {
204
204
curveNumber : 0 ,
205
205
pointNumber : 1 ,
206
206
x : 0.004 ,
207
207
y : 12.5 ,
208
- identifier : undefined
208
+ id : undefined
209
209
} ] , 'with the correct selected points' ) ;
210
210
assertRange ( selectedData . range , {
211
211
x : [ 0.002000 , 0.0046236 ] ,
@@ -260,7 +260,7 @@ describe('select box and lasso', function() {
260
260
pointNumber : 10 ,
261
261
x : 0.099 ,
262
262
y : 2.75 ,
263
- identifier : undefined
263
+ id : undefined
264
264
} ] , 'with the correct selecting points' ) ;
265
265
266
266
expect ( selectedCnt ) . toEqual ( 1 , 'with the correct selected count' ) ;
@@ -269,7 +269,7 @@ describe('select box and lasso', function() {
269
269
pointNumber : 10 ,
270
270
x : 0.099 ,
271
271
y : 2.75 ,
272
- identifier : undefined
272
+ id : undefined
273
273
} ] , 'with the correct selected points' ) ;
274
274
275
275
doubleClick ( 250 , 200 ) . then ( function ( ) {
Original file line number Diff line number Diff line change @@ -15,22 +15,19 @@ describe('Plots.supplyTransitionDefaults', function() {
15
15
expect ( Plots . supplyTransitionDefaults ( { } ) ) . toEqual ( {
16
16
duration : 500 ,
17
17
ease : 'cubic-in-out' ,
18
- redraw : true ,
19
- delay : 0 ,
18
+ redraw : true
20
19
} ) ;
21
20
} ) ;
22
21
23
22
it ( 'uses provided values' , function ( ) {
24
23
expect ( Plots . supplyTransitionDefaults ( {
25
24
duration : 100 ,
26
25
ease : 'quad-in-out' ,
27
- redraw : false ,
28
- delay : 50 ,
26
+ redraw : false
29
27
} ) ) . toEqual ( {
30
28
duration : 100 ,
31
29
ease : 'quad-in-out' ,
32
- redraw : false ,
33
- delay : 50 ,
30
+ redraw : false
34
31
} ) ;
35
32
} ) ;
36
33
You can’t perform that action at this time.
0 commit comments