Implement basic build arch

This commit is contained in:
Bret Comnes
2019-11-11 15:51:48 -07:00
parent 3fa8edc051
commit 363449e7b5
8 changed files with 110 additions and 0 deletions

9
test.js Normal file
View File

@@ -0,0 +1,9 @@
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')
})