Bones/node_modules/lockfile/test/unlock-no-cb.js
SOUTHERNCO\x2mjbyrn 7efe7605b8 Template Upload
2017-05-17 13:45:25 -04:00

11 lines
285 B
JavaScript

var t = require('tap')
if (/0\.(10|8)/.test(process.version)) {
t.pass('just a dummy test, no beforeExit in this node version')
} else {
process.on('beforeExit', function (code) {
t.equal(code, 0, 'did not throw')
})
}
var lf = require('lockfile')
lf.unlock('no-file-no-cb')