UNPKG

184 BJavaScriptView Raw
1var test = require('tape')
2var cycle = require('../src/index')
3
4test('it should work', (t) => {
5 cycle(main)
6 t.ok(true)
7 t.end()
8
9 function main (input) {
10 return input
11 }
12})