mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-07-23 18:52:50 +02:00
14 lines
255 B
JavaScript
14 lines
255 B
JavaScript
const wasm = require('wasm-bindgen-test.js');
|
|
const assert = require('assert');
|
|
|
|
exports.call_throw_one = function() {
|
|
try {
|
|
wasm.throw_one();
|
|
} catch (e) {
|
|
assert.strictEqual(e, 1);
|
|
}
|
|
};
|
|
|
|
exports.call_ok = function() {
|
|
wasm.nothrow();
|
|
};
|