1
0
mirror of https://github.com/fuse-friends/fuse-native synced 2026-03-02 03:40:15 +00:00

travis and prebuildify

This commit is contained in:
Mathias Buus
2019-11-19 14:04:46 +01:00
parent 3fd1f9ef53
commit 46d09be1d9
8 changed files with 68 additions and 16 deletions

6
test/helpers/index.js Normal file
View File

@@ -0,0 +1,6 @@
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)
})
}