napi-rs/test_module/tests.js
LongYinan c05ab719b3
init
2018-04-28 16:26:38 +08:00

19 lines
418 B
JavaScript

const testModule = require('./target/debug/test_module')
function testSpawn() {
console.log('=== Test spawning a future on libuv event loop')
return testModule.testSpawn()
}
function testThrow() {
console.log('=== Test throwing from Rust')
try {
testModule.testThrow()
} catch (e) {
return
}
console.error('Expected function to throw an error')
process.exit(1)
}
testSpawn().then(testThrow)