mirror of
https://github.com/di-sukharev/opencommit.git
synced 2026-04-20 03:02:51 -04:00
13 lines
319 B
TypeScript
13 lines
319 B
TypeScript
// @ts-ignore
|
|
// import { jest } from '@jest/globals';
|
|
|
|
import { generateCommitMessageByDiff } from '../src/generateCommitMessageFromGitDiff';
|
|
|
|
test.skip('generateCommitMessageFromGitDiff', async () => {
|
|
const GIT_DIFF = ``;
|
|
|
|
const res = await generateCommitMessageByDiff(GIT_DIFF);
|
|
|
|
expect(res).toBe('lol');
|
|
});
|