mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-11-24 14:42:35 +03:00
18 lines
630 B
JavaScript
18 lines
630 B
JavaScript
const wasm = require('wasm-bindgen-test.js');
|
|
const assert = require('assert');
|
|
|
|
exports.js_identity = a => a;
|
|
|
|
exports.js_works = () => {
|
|
assert.strictEqual(wasm.letter(), 'a');
|
|
assert.strictEqual(wasm.face(), '😀');
|
|
assert.strictEqual(wasm.rust_identity('Ղ'), 'Ղ');
|
|
assert.strictEqual(wasm.rust_identity('ҝ'), 'ҝ');
|
|
assert.strictEqual(wasm.rust_identity('Δ'), 'Δ');
|
|
assert.strictEqual(wasm.rust_identity('䉨'), '䉨');
|
|
assert.strictEqual(wasm.rust_js_identity('a'), 'a');
|
|
assert.strictEqual(wasm.rust_js_identity('㊻'), '㊻');
|
|
wasm.rust_letter('a');
|
|
wasm.rust_face('😀');
|
|
};
|