mirror of
https://github.com/morhetz/gruvbox.git
synced 2025-11-17 07:43:38 -05:00
chore(package): re-init package with commitizen and standard-release
This commit is contained in:
44
node_modules/find-parent-dir/test/find-parent-dir.js
generated
vendored
Normal file
44
node_modules/find-parent-dir/test/find-parent-dir.js
generated
vendored
Normal 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()
|
||||
})
|
||||
})
|
||||
Reference in New Issue
Block a user