mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Fix prettier (#20827)
This commit is contained in:
parent
45259f4362
commit
3f348287aa
@ -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);
|
||||||
|
Loading…
Reference in New Issue
Block a user