Skip to content

Commit

Permalink
bugfix/ATC-191 - Adds failing test cases for parseElevation() bug rep…
Browse files Browse the repository at this point in the history
…orted under zlsa#756
  • Loading branch information
n8rzz committed Dec 12, 2016
1 parent ea02be4 commit 54db29e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/utilities/unitConverters.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,4 +129,6 @@ ava('.parseElevation() should parse a string elevation into an elevation in feet
t.true(parseElevation('-23m') === -75.45931758530183);
t.true(parseElevation(Infinity) === Infinity);
t.true(parseElevation(-Infinity) === -Infinity);
t.true(parseElevation('Infinity') === Infinity);
t.true(parseElevation('-Infinity') === -Infinity);
});

0 comments on commit 54db29e

Please sign in to comment.