mirror of
https://github.com/shivammathur/setup-php.git
synced 2024-11-23 12:21:07 +07:00
18 lines
525 B
JavaScript
18 lines
525 B
JavaScript
var local = require('../../lib/services/localGit')
|
|
var execSync = require('child_process').execSync
|
|
|
|
describe('Local git/mercurial CI Provider', function() {
|
|
it('can get commit', function() {
|
|
expect(local.configuration().commit).toMatch(/^\w{40}$/)
|
|
expect(local.configuration().commit).toEqual(
|
|
execSync("git rev-parse HEAD || hg id -i --debug | tr -d '+'")
|
|
.toString()
|
|
.trim()
|
|
)
|
|
})
|
|
|
|
it('can get branch', function() {
|
|
expect(local.configuration().branch).not.toEqual(null)
|
|
})
|
|
})
|