summaryrefslogtreecommitdiffstats
path: root/vendor/wasm-bindgen/tests/wasm/structural.js
blob: 0261c50e145b0bb6d781dfd76b5a7cf680e67a93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
const wasm = require('wasm-bindgen-test.js');
const assert = require('assert');

exports.js_works = () => {
    let called = false;
    wasm.run({
        bar() {
            called = true;
        },
        baz: 1,
    });
    assert.strictEqual(called, true);
};