a781a4f27e
BREAKING CHANGE: requires node >= 16 and some cli options have been renamed
17 lines
386 B
TypeScript
17 lines
386 B
TypeScript
import test from 'ava'
|
|
|
|
const bindings = require('../index.node')
|
|
|
|
test('should be able to add cleanup hook', (t) => {
|
|
t.notThrows(() => {
|
|
const ret = bindings.addCleanupHook()
|
|
t.is(typeof ret, 'object')
|
|
})
|
|
})
|
|
|
|
test('should be able to remove cleanup hook', (t) => {
|
|
t.notThrows(() => {
|
|
const ret = bindings.addCleanupHook()
|
|
bindings.removeCleanupHook(ret)
|
|
})
|
|
})
|