7 lines
139 B
TypeScript
7 lines
139 B
TypeScript
import {tap, expect } from '@pushrocks/tapbundle';
|
|
|
|
tap.test('should run a test', async () => {
|
|
console.log('hi there');
|
|
})
|
|
|
|
tap.start(); |