2019-11-11 15:51:48 -07:00

10 lines
181 B
JavaScript

import tape from 'tape'
import ptape from 'tape-promise'
import { thing } from './main'
const test = ptape(tape)
test('a test', async t => {
console.log(thing)
t.ok('pass')
})