tstest/test/test.single.ts

8 lines
216 B
TypeScript

import { expect, tap } from '@push.rocks/tapbundle';
tap.test('single file test execution', async () => {
console.log('This test verifies single file execution works');
expect(true).toBeTrue();
});
tap.start();