mirror of
https://github.com/grafana/grafana.git
synced 2024-11-29 12:14:08 -06:00
Fix prettier (#20827)
This commit is contained in:
parent
45259f4362
commit
3f348287aa
@ -118,15 +118,24 @@ describe('GraphCtrl', () => {
|
||||
const data = [
|
||||
{
|
||||
target: 'test.normal',
|
||||
datapoints: [[10, 1], [10, 2]],
|
||||
datapoints: [
|
||||
[10, 1],
|
||||
[10, 2],
|
||||
],
|
||||
},
|
||||
{
|
||||
target: 'test.nulls',
|
||||
datapoints: [[null, 1], [null, 2]],
|
||||
datapoints: [
|
||||
[null, 1],
|
||||
[null, 2],
|
||||
],
|
||||
},
|
||||
{
|
||||
target: 'test.zeros',
|
||||
datapoints: [[0, 1], [0, 2]],
|
||||
datapoints: [
|
||||
[0, 1],
|
||||
[0, 2],
|
||||
],
|
||||
},
|
||||
];
|
||||
ctx.ctrl.onDataSnapshotLoad(data);
|
||||
|
Loading…
Reference in New Issue
Block a user