commitinfo/test/test.ts

10 lines
293 B
TypeScript
Raw Normal View History

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