Skip to content

Commit e9a2763

Browse files
committed
http_server: true
1 parent a8cd4ab commit e9a2763

File tree

3 files changed

+2
-1
lines changed

3 files changed

+2
-1
lines changed

cli/tests/051_wasm_import/simple.wasm

0 Bytes
Binary file not shown.

cli/tests/051_wasm_import/simple.wat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
(module
66
(import "./wasm-dep.js" "jsFn" (func $jsFn (result i32)))
77
(import "./wasm-dep.js" "jsInitFn" (func $jsInitFn))
8-
(import "http://localhost:4545/cli/tests/051_wasm_import/remote.ts" "jsRemoteFn" (func $jsRemoteFn (result i32)))
8+
(import "http://127.0.0.1:4545/cli/tests/051_wasm_import/remote.ts" "jsRemoteFn" (func $jsRemoteFn (result i32)))
99
(export "add" (func $add))
1010
(export "addImported" (func $addImported))
1111
(export "addRemote" (func $addRemote))

cli/tests/integration_tests.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -359,6 +359,7 @@ itest!(_050_more_jsons {
359359
itest!(_051_wasm_import {
360360
args: "run --reload --allow-net --allow-read 051_wasm_import.ts",
361361
output: "051_wasm_import.ts.out",
362+
http_server: true,
362363
});
363364

364365
itest!(lock_check_ok {

0 commit comments

Comments
 (0)