find-file.js 294 B

12345678910111213
  1. var fs = require('fs')
  2. , assert = require('assert')
  3. , objx = {
  4. rand: Math.random()
  5. }
  6. fs.writeFileSync('/tmp/random-test-config.json', JSON.stringify(objx))
  7. var cc = require('../')
  8. var path = cc.find('tmp/random-test-config.json')
  9. assert.equal(path, '/tmp/random-test-config.json')