smartgit/test/test.ts

13 lines
346 B
TypeScript
Raw Normal View History

2019-06-18 13:17:50 +00:00
import { tap, expect } from '@pushrocks/tapbundle';
import * as smartgit from '../ts/index';
2016-06-12 14:46:59 +00:00
2019-06-20 12:10:42 +00:00
import * as path from 'path';
const testRepoDir = path.join(__dirname, '../.nogit/testrepo');
tap.test('should create a new repo at .nogit', async () => {
const gitRepo = await smartgit.GitRepo.fromCreatingRepoInDir(testRepoDir);
2020-08-15 13:46:56 +00:00
});
2019-06-20 12:10:42 +00:00
2019-06-18 13:17:50 +00:00
tap.start();