Test cleanup and fixes [s-t]

This commit is contained in:
Angelos Chalaris
2018-06-18 18:37:35 +03:00
parent ba3e684a27
commit 9cf2c4680c
53 changed files with 286 additions and 409 deletions

View File

@@ -1,11 +1,9 @@
const expect = require('expect');
const toDecimalMark = require('./toDecimalMark.js');
test('toDecimalMark is a Function', () => {
test('toDecimalMark is a Function', () => {
expect(toDecimalMark).toBeInstanceOf(Function);
});
test('convert a float-point arithmetic to the Decimal mark form', () => {
expect(toDecimalMark(12305030388.9087), "12,305,030).toBe(388.909")
test('convert a float-point arithmetic to the Decimal mark form', () => {
expect(toDecimalMark(12305030388.9087)).toBe("12,305,030,388.909");
});