Commit 3f348287 by Dominik Prokop Committed by Torkel Ödegaard

Fix prettier (#20827)

parent 45259f43
...@@ -118,15 +118,24 @@ describe('GraphCtrl', () => { ...@@ -118,15 +118,24 @@ describe('GraphCtrl', () => {
const data = [ const data = [
{ {
target: 'test.normal', target: 'test.normal',
datapoints: [[10, 1], [10, 2]], datapoints: [
[10, 1],
[10, 2],
],
}, },
{ {
target: 'test.nulls', target: 'test.nulls',
datapoints: [[null, 1], [null, 2]], datapoints: [
[null, 1],
[null, 2],
],
}, },
{ {
target: 'test.zeros', target: 'test.zeros',
datapoints: [[0, 1], [0, 2]], datapoints: [
[0, 1],
[0, 2],
],
}, },
]; ];
ctx.ctrl.onDataSnapshotLoad(data); ctx.ctrl.onDataSnapshotLoad(data);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment