Skip to content

Commit

Permalink
fixing unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
cauemarcondes committed Jul 7, 2020
1 parent 6ca4171 commit 6dbd5ec
Showing 1 changed file with 0 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,25 +48,20 @@ describe('Observability dashboard data', () => {
stats: {
services: {
type: 'number',
label: 'Services',
value: 10,
},
transactions: {
type: 'number',
label: 'Transactions',
value: 2,
color: '#6092c0',
},
},
series: {
transactions: {
label: 'Transactions',
coordinates: [
{ x: 1, y: 1 },
{ x: 2, y: 2 },
{ x: 3, y: 3 },
],
color: '#6092c0',
},
},
});
Expand All @@ -89,21 +84,16 @@ describe('Observability dashboard data', () => {
stats: {
services: {
type: 'number',
label: 'Services',
value: 0,
},
transactions: {
type: 'number',
label: 'Transactions',
value: 0,
color: '#6092c0',
},
},
series: {
transactions: {
label: 'Transactions',
coordinates: [],
color: '#6092c0',
},
},
});
Expand All @@ -126,21 +116,16 @@ describe('Observability dashboard data', () => {
stats: {
services: {
type: 'number',
label: 'Services',
value: 0,
},
transactions: {
type: 'number',
label: 'Transactions',
value: 0,
color: '#6092c0',
},
},
series: {
transactions: {
label: 'Transactions',
coordinates: [{ x: 1 }, { x: 2 }, { x: 3 }],
color: '#6092c0',
},
},
});
Expand Down

0 comments on commit 6dbd5ec

Please sign in to comment.