-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcurrentBranch.test.ts
42 lines (30 loc) · 1.11 KB
/
currentBranch.test.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import { currentBranch } from 'git-essentials'
import { makeFsFixture, FsFixtureData } from './helpers/makeFsFixture'
import resolveRefFsFixtureData from './fixtures/fs/resolveRef.json'
import detachedHeadFsFixtureData from './fixtures/fs/detachedHead.json'
describe('currentBranch', () => {
it('resolve HEAD to main', async () => {
// arrange
const { fs, dir } = await makeFsFixture(resolveRefFsFixtureData as FsFixtureData)
// act
const branch = await currentBranch({ fs, dir })
// assert
expect(branch).toBe('main')
})
it('resolve HEAD to refs/heads/main', async () => {
// arrange
const { fs, dir } = await makeFsFixture(resolveRefFsFixtureData as FsFixtureData)
// act
const branch = await currentBranch({ fs, dir, fullname: true })
// assert
expect(branch).toBe('refs/heads/main')
})
it('returns undefined if HEAD is detached', async () => {
// arrange
const { fs, dir } = await makeFsFixture(detachedHeadFsFixtureData as FsFixtureData)
// act
const branch = await currentBranch({ fs, dir })
// assert
expect(branch).toBeUndefined()
})
})