File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
test/jasmine/performance_tests Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -238,9 +238,10 @@ describe('Performance test various traces', function() {
238
238
if ( testIt ) {
239
239
samples . forEach ( function ( t ) {
240
240
it (
241
- spec . nTraces + ' ' + spec . traceType +
241
+ 'All points:' + spec . n + ' | ' +
242
+ spec . nTraces + 'X' + spec . traceType +
242
243
( spec . mode ? ' | mode: ' + spec . mode : '' ) +
243
- ' | size:' + spec . n + ' | turn: ' + t , function ( done ) {
244
+ ' | turn: ' + t , function ( done ) {
244
245
if ( t === 0 ) {
245
246
tests [ index ] . raw = [ ] ;
246
247
}
@@ -250,9 +251,9 @@ describe('Performance test various traces', function() {
250
251
251
252
var startTime , endTime ;
252
253
253
- requestID1 = requestAnimationFrame ( function ( ) {
254
+ requestID1 = requestAnimationFrame ( ( ) => {
254
255
// Wait for actual rendering instead of promise
255
- requestID2 = requestAnimationFrame ( function ( ) {
256
+ requestID2 = requestAnimationFrame ( ( ) => {
256
257
endTime = performance . now ( ) ;
257
258
258
259
var delta = endTime - startTime ;
You can’t perform that action at this time.
0 commit comments