8 lines
134 B
TypeScript
8 lines
134 B
TypeScript
|
import { tap, expect } from '../dist/index'
|
||
|
|
||
|
tap.test('my first test', async () => {
|
||
|
return expect(true).to.be.true
|
||
|
})
|
||
|
|
||
|
tap.start()
|