RPM build fix (reverted CI changes which will need to be un-reverted or made conditional) and vendor Rust dependencies to make builds much faster in any CI system.
This commit is contained in:
13
zeroidc/vendor/wasm-bindgen/tests/wasm/structural.js
vendored
Normal file
13
zeroidc/vendor/wasm-bindgen/tests/wasm/structural.js
vendored
Normal file
@@ -0,0 +1,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);
|
||||
};
|
||||
Reference in New Issue
Block a user