8 lines
163 B
TypeScript
8 lines
163 B
TypeScript
import { tap, expect } from '@git.zone/tstest/tapbundle';
|
|
|
|
tap.test('should run a test', async () => {
|
|
console.log('hi there');
|
|
});
|
|
|
|
export default tap.start();
|