/** * Created by Tony on 2017/3/16. */ var test = require('tape'); test('basic arithmetic', function (t) { t.plan(2); t.equal(2 + 3, 5); t.equal(7 * 8 + 9, 65); });