9 lines
171 B
TypeScript
9 lines
171 B
TypeScript
|
import { expect, tap } from 'tapbundle'
|
||
|
import * as slackme from '../ts/index'
|
||
|
|
||
|
tap.test('first test', async () => {
|
||
|
console.log(slackme.standardExport)
|
||
|
})
|
||
|
|
||
|
tap.start()
|