( repo: Repository, file: WorkingDirectoryFileChange )
| 40 | import { isConflictedFile } from '../../../src/lib/status' |
| 41 | |
| 42 | async function getTextDiff( |
| 43 | repo: Repository, |
| 44 | file: WorkingDirectoryFileChange |
| 45 | ): Promise<ITextDiff> { |
| 46 | const diff = await getWorkingDirectoryDiff(repo, file) |
| 47 | assert.equal(diff.kind, DiffType.Text) |
| 48 | return diff as ITextDiff |
| 49 | } |
| 50 | |
| 51 | describe('git/commit', () => { |
| 52 | describe('createCommit normal', () => { |
no test coverage detected