mirror of
https://github.com/morhetz/gruvbox.git
synced 2025-11-17 15:53:38 -05:00
chore(package): re-init package with commitizen and standard-release
This commit is contained in:
53
node_modules/find-root/test/test.js
generated
vendored
Normal file
53
node_modules/find-root/test/test.js
generated
vendored
Normal file
@@ -0,0 +1,53 @@
|
||||
var chai = require('chai')
|
||||
chai.should()
|
||||
var expect = chai.expect
|
||||
var moquire = require('moquire')
|
||||
var path = require('path')
|
||||
|
||||
var MODULE = '../'
|
||||
|
||||
describe('find-root', function () {
|
||||
|
||||
it('recursively looks for package.json', function () {
|
||||
|
||||
var checked = []
|
||||
var fs = {
|
||||
statSync: function (path) {
|
||||
checked.push(path)
|
||||
if (path === '/foo/package.json') {
|
||||
return {};
|
||||
} else {
|
||||
throw new Error();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
var findRoot = moquire(MODULE, {fs: fs})
|
||||
|
||||
findRoot('/foo/bar/baz')
|
||||
.should.equal('/foo')
|
||||
|
||||
checked.should.deep.equal([
|
||||
'/foo/bar/baz/package.json',
|
||||
'/foo/bar/package.json',
|
||||
'/foo/package.json'
|
||||
])
|
||||
|
||||
})
|
||||
|
||||
it('throws if not found', function () {
|
||||
|
||||
var fs = {
|
||||
statSync: function (path) {
|
||||
throw new Error();
|
||||
}
|
||||
}
|
||||
|
||||
var findRoot = moquire(MODULE, {fs: fs})
|
||||
|
||||
expect(function () {
|
||||
findRoot('/foo/bar/baz/')
|
||||
}).to.throw('not found')
|
||||
|
||||
})
|
||||
})
|
||||
Reference in New Issue
Block a user