9 lines
211 B
TypeScript
9 lines
211 B
TypeScript
import { expect, tap } from '@git.zone/tstest/tapbundle';
|
|
import * as portablecontract from '../ts/index.js'
|
|
|
|
tap.test('first test', async () => {
|
|
console.log(portablecontract)
|
|
})
|
|
|
|
export default tap.start();
|