[Data Format] Don't truncate data values

This commit is contained in:
Victor Woeltjen
2016-03-21 14:35:58 -07:00
parent ad4c456ca2
commit d6ab70447e
2 changed files with 5 additions and 6 deletions

View File

@@ -59,7 +59,10 @@ define(
});
it("formats ranges as values", function () {
expect(formatter.formatRangeValue(10)).toEqual("10.000");
var value = 3.14159265352979323846264338, // not pi
formatted = formatter.formatRangeValue(value);
// Make sure we don't lose information by formatting
expect(parseFloat(formatted)).toEqual(value);
});
});
}