gitconfig
Version:
Run git config command
27 lines (17 loc) • 356 B
JavaScript
/**
* Test case for fetchRepo.
* Runs with mocha.
*/
const fetchRepo = require('../lib/fetch_repo.js')
const assert = require('assert')
describe('fetch-repo', function () {
this.timeout(3000)
before(async () => {
})
after(async () => {
})
it('Fetch repo', async () => {
})
})
/* global describe, before, after, it */