fix(core): update

This commit is contained in:
2022-07-31 15:18:04 +02:00
parent b46d1e19a7
commit f5617d9d45
9 changed files with 42 additions and 65 deletions

View File

@ -7,20 +7,23 @@ import * as path from 'path';
let testSmartgitInstance: smartgit.Smartgit;
const testRepoDir = path.join(__dirname, '../.nogit/testrepo');
const testRepoDirSmartfile = path.join(__dirname, '../.nogit/pushrocks_smartfile')
const testRepoDirSmartfile = path.join(__dirname, '../.nogit/pushrocks_smartfile');
tap.test('should create a valid smartgit instance', async () => {
testSmartgitInstance = new smartgit.Smartgit();
await testSmartgitInstance.init();
expect(testSmartgitInstance).toBeInstanceOf(smartgit.Smartgit);
})
});
tap.test('should create a new repo at .nogit', async () => {
const gitRepo = await testSmartgitInstance.createRepoByOpen(testRepoDir);
});
tap.test('should clone a repo', async () => {
const gitRepo = await testSmartgitInstance.createRepoByClone('https://gitlab.com/pushrocks/smartfile.git', testRepoDirSmartfile);
const gitRepo = await testSmartgitInstance.createRepoByClone(
'https://gitlab.com/pushrocks/smartfile.git',
testRepoDirSmartfile
);
});
tap.start();