8 lines
154 B
JavaScript
Raw Normal View History

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