testScMath.js 264 B

12345678910
  1. /**
  2. * Created by Tony on 2017/4/14.
  3. */
  4. var test = require('tape');
  5. var scMathUtil = require('../../../public/scMathUtil').getUtil();
  6. test('test smartcost math util for rounding', function(t){
  7. t.equal(scMathUtil.roundTo(-3.12345, -2), -3.12);
  8. t.end();
  9. })