documentit/node_modules/home-path/test/test.js
2018-01-05 10:48:13 -08:00

8 lines
154 B
JavaScript

var test = require('tape')
var getHomePath = require('../')
test('returns string', function (t) {
t.equal(typeof getHomePath(), 'string')
t.end()
})