2020-08-24 16:16:35 +08:00
|
|
|
import test from 'ava'
|
2020-06-17 20:33:28 +08:00
|
|
|
|
|
|
|
const bindings = require('../index.node')
|
|
|
|
|
|
|
|
test('should be able to throw error from native', (t) => {
|
|
|
|
t.throws(bindings.testThrow)
|
|
|
|
})
|
|
|
|
|
|
|
|
test('should be able to throw error from native with reason', (t) => {
|
|
|
|
const reason = 'Fatal'
|
|
|
|
t.throws(() => bindings.testThrowWithReason(reason), null, reason)
|
|
|
|
})
|
|
|
|
|
|
|
|
test('should throw if argument type is not match', (t) => {
|
|
|
|
t.throws(() => bindings.testThrowWithReason(2))
|
|
|
|
})
|
2020-07-19 16:54:10 +08:00
|
|
|
|
|
|
|
test('should throw if Rust code panic', (t) => {
|
|
|
|
t.throws(() => bindings.testThrowWithPanic())
|
|
|
|
})
|