documentit/node_modules/home-path/test/test.js

8 lines
154 B
JavaScript
Raw Normal View History

2018-01-05 18:48:13 +00:00
var test = require('tape')
var getHomePath = require('../')
test('returns string', function (t) {
t.equal(typeof getHomePath(), 'string')
t.end()
})