testJSCalc.js 210 B

1234567891011
  1. /**
  2. * Created by Tony on 2017/7/26.
  3. */
  4. var test = require('tape');
  5. test('计算式测试', function(t){
  6. console.log(10 / 96 * 25.4 / 0.3612);
  7. t.pass('just pass for js calculation!');
  8. t.end();
  9. })