mirror of
https://github.com/denoland/deno.git
synced 2025-08-03 10:33:54 +00:00
Add WebAssembly to runtime library (#1677)
This also modifies the `ts_library_builder` to support inlining assets. Includes integration tests from @sh7dm
This commit is contained in:
parent
748b0f9c9d
commit
48fedee34e
12 changed files with 274 additions and 1 deletions
|
@ -16,3 +16,7 @@ test(function windowWindowExists() {
|
|||
test(function globalThisEqualsWindow() {
|
||||
assert(globalThis === window);
|
||||
});
|
||||
|
||||
test(function webAssemblyExists() {
|
||||
assert(typeof WebAssembly.compile === "function");
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue