Files
tstest/test/tstest/test.single.ts

8 lines
222 B
TypeScript

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