25 lines
881 B
TypeScript
25 lines
881 B
TypeScript
import { tap, expect } from '@pushrocks/tapbundle';
|
|
import * as smartgit from '../ts/index';
|
|
|
|
import * as path from 'path';
|
|
|
|
let testSmartgitInstance: smartgit.Smartgit;
|
|
const testRepoDir = path.join(__dirname, '../.nogit/testrepo');
|
|
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).to.be.instanceOf(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);
|
|
});
|
|
|
|
tap.start();
|