8 lines
196 B
TypeScript
8 lines
196 B
TypeScript
import { tap } from '../../ts_tapbundle/index.js';
|
|
|
|
tap.test('spec file test', async () => {
|
|
console.log('This is a .spec.ts file that should be found by glob');
|
|
return true;
|
|
});
|
|
|
|
tap.start(); |