second.js 164 B

12345678910111213
  1. 'use strict';
  2. var test = require('../../');
  3. test('first', function (t) {
  4. t.plan(1);
  5. t.ok(true);
  6. });
  7. test('second', function (t) {
  8. t.plan(2);
  9. t.ok(true);
  10. });