8 lines
218 B
TypeScript
8 lines
218 B
TypeScript
import { expect, tap } from '@push.rocks/tapbundle';
|
|
|
|
tap.test('glob pattern test execution', async () => {
|
|
console.log('This test verifies glob pattern execution works');
|
|
expect(true).toBeTrue();
|
|
});
|
|
|
|
tap.start(); |