Skip to content

Commit

Permalink
test: latest ComponentizeJS test (bytecodealliance#547)
Browse files Browse the repository at this point in the history
  • Loading branch information
guybedford authored Jan 22, 2025
1 parent dd0631a commit eefa6f3
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 18 deletions.
28 changes: 14 additions & 14 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
},
"type": "module",
"dependencies": {
"@bytecodealliance/componentize-js": "^0.15.0",
"@bytecodealliance/componentize-js": "^0.16.0",
"@bytecodealliance/preview2-shim": "^0.17.1",
"binaryen": "^120.0.0",
"chalk-template": "^1",
Expand Down
4 changes: 2 additions & 2 deletions test/fixtures/componentize/wasi-http-proxy/source.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { handle } from 'wasi:http/[email protected].2';
import { handle } from 'wasi:http/[email protected].3';
import {
Fields,
OutgoingRequest,
OutgoingBody,
} from 'wasi:http/[email protected].2';
} from 'wasi:http/[email protected].3';

const sendRequest = (
method,
Expand Down
2 changes: 1 addition & 1 deletion test/preview2.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export async function preview2Test() {
strictEqual(stderr, "writing to stderr: hello, world\n");
});

test.skip("wasi-http-proxy", async () => {
test("wasi-http-proxy", async () => {
const server = createServer(async (req, res) => {
if (req.url == "/api/examples") {
res.writeHead(200, {
Expand Down

0 comments on commit eefa6f3

Please sign in to comment.