UNPKG

scotch-tape

Version:
16 lines (13 loc) 297 B
'use strict'; var scotchTape = require('../scotch-tape'); var test = scotchTape(); test('Basic Tests', function test(it) { it('should pass 1', function it(t) { t.ok(true, 'called'); t.end(); }); it('should pass 2', function it(t) { t.ok(true, 'called'); t.end(); }); });