This file ( 748B ) exceeds the allowed full mode (48 kb) size.
The editor full hight is disabled, only scrolling is allowed..
If you wish to edit a file, it is recommended to use the scroll mode as some users do not like the full height
mode, although some users like it.
const should = require('should');
const git = require('../../src/git');
describe('src/git', () => {
it('branch / data / commit / repo', async () => {
const result = await Promise.all([
git.commit,
git.branch,
git.date,
git.repo
]);
const commit = result[0];
const branch = result[1];
const date = result[2];
const repo = result[3];
commit.should.be.a.Number();
branch.should.be.a.String();
date.should.be.a.Number();
repo.should.be.a.String();
console.log(`commit: ${commit}`);
console.log(`branch: ${branch}`);
console.log(`date: ${date}`);
console.log(`repo: ${repo}`);
})
})