We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84eebcb commit 20233deCopy full SHA for 20233de
test/jasmine/tests/plots_test.js
@@ -514,7 +514,9 @@ describe('Test Plots', function() {
514
title: 'frame A'
515
},
516
name: 'A'
517
- }, {
+ },
518
+ null,
519
+ {
520
data: [{
521
y: [1, 2, 3],
522
}],
@@ -531,7 +533,8 @@ describe('Test Plots', function() {
531
533
532
534
expect(obj.data).toEqual(mock.data);
535
expect(obj.layout).toEqual(mock.layout);
- expect(obj.frames).toEqual(mock.frames);
536
+ expect(obj.frames[0]).toEqual(mock.frames[0]);
537
+ expect(obj.frames[1]).toEqual(mock.frames[2]);
538
})
539
.then(function() {
540
destroyGraphDiv();
0 commit comments