diff --git a/test/test.ts b/test/test.ts index 57fca80..c0dca4a 100644 --- a/test/test.ts +++ b/test/test.ts @@ -2,7 +2,8 @@ import { expect, tap } from '@pushrocks/tapbundle'; import * as smartmoney from '../ts/index'; tap.test('first test', async () => { - console.log(smartmoney.standardExport); + const myNumber = smartmoney.parseEuropeanNumberString('1.000,50'); + expect(myNumber).to.equal(1000.5); }); tap.start();