testRpt.js 196 B

1234567891011
  1. /**
  2. * Created by Tony on 2017/3/17.
  3. */
  4. var test = require('tape');
  5. test('test get report pages function: ', function (t) {
  6. t.plan(2);
  7. t.equal(2 + 3, 6);
  8. t.equal(7 * 8 + 9, 65);
  9. });