Skip to content

Commit

Permalink
fetchXY: test the yValues type
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-marechal committed Oct 7, 2021
1 parent 7d48039 commit b498ed7
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/protocol/tsp-client.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,9 @@ describe('TspClient Deserialization', () => {
for (const xValue of serie.xValues) {
expect(typeof xValue).toEqual('number');
}
for (const yValue of serie.yValues) {
expect(typeof yValue).toEqual('number');
}
}
});

Expand Down

0 comments on commit b498ed7

Please sign in to comment.