mirror of
https://github.com/bcomnes/deploy-to-neocities.git
synced 2026-01-16 22:56:28 +00:00
10 lines
181 B
JavaScript
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')
|
|
})
|