1
0
mirror of https://github.com/fuse-friends/fuse-native synced 2024-09-28 06:00:43 +00:00
fuse-friends_fuse-native/test/helpers/index.js
2019-12-17 15:03:51 +01:00

7 lines
215 B
JavaScript

exports.unmount = function (fuse, cb) { // This only seems to be nessesary an the ancient osx we use on travis so ... yolo
fuse.unmount(function (err) {
if (err) return cb(err)
setTimeout(cb, 1000)
})
}