chore(package): re-init package with commitizen and standard-release

This commit is contained in:
Pavel Pertsev
2018-05-16 12:54:46 +03:00
parent cb4e7a5643
commit eaf2328575
10640 changed files with 609660 additions and 117 deletions

44
node_modules/find-parent-dir/test/find-parent-dir.js generated vendored Normal file
View File

@@ -0,0 +1,44 @@
'use strict';
/*jshint asi: true */
var test = require('tap').test
var path = require('path')
var fs = require('fs')
var findParentDir = require('..')
test('finding .git root relative to the test dir', function (t) {
findParentDir(__dirname, '.git', function (err, dir) {
t.equals(dir, path.resolve(__dirname, '..') + '/')
t.end()
});
})
test('finding this dir relative to the test dir', function (t) {
findParentDir(__dirname, 'find-parent-dir.js', function (err, dir) {
t.equals(dir, path.resolve(__dirname))
t.end()
});
})
test('sync finding .git root relative to the test dir', function (t) {
var dir = findParentDir.sync(__dirname, '.git')
t.equals(dir, path.resolve(__dirname, '..') + '/')
t.end()
})
test('sync finding this dir relative to the test dir', function (t) {
var dir = findParentDir.sync(__dirname, 'find-parent-dir.js')
t.equals(dir, path.resolve(__dirname))
t.end()
})
test('find no dir when file is in the test dir', function(t) {
var filepath = path.join(__dirname, 'shazam.txt')
fs.writeFileSync(filepath, 'shaq attack')
findParentDir('/etc', 'shazam.txt', function (err, dir) {
fs.unlinkSync(filepath)
t.equals(err, null)
t.equals(dir, null)
t.end()
})
})