Files

10 lines
293 B
TypeScript
Raw Permalink Normal View History

2024-06-23 12:57:23 +02:00
import { expect, expectAsync, tap } from '@push.rocks/tapbundle';
2022-04-25 09:58:42 +02:00
import * as commitinfo from '../ts/index.js';
tap.test('first test', async () => {
2022-04-26 16:57:02 +02:00
const testCommitinfo = new commitinfo.CommitInfo(process.cwd(), 'patch');
await testCommitinfo.writeIntoPotentialDirs();
2022-04-25 09:58:42 +02:00
});
tap.start();