UNPKG

gitconfig

Version:
27 lines (17 loc) 356 B
/** * Test case for fetchRepo. * Runs with mocha. */ 'use strict' 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 */