We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 085a37a commit 71eea4fCopy full SHA for 71eea4f
packages/wrangler/e2e/dev.test.ts
@@ -504,7 +504,7 @@ describe.each([{ cmd: "wrangler dev" }])(
504
from js import Response, console
505
def on_fetch(request):
506
console.log(f"hello {mul(2,3)}")
507
- # TODO: Test print too once it's fixed.
+ print(f"foobar {mul(4,3)}")
508
console.log(f"end")
509
return Response.new(f"py hello world {mul(2,3)}")`,
510
"package.json": dedent`
@@ -524,7 +524,7 @@ describe.each([{ cmd: "wrangler dev" }])(
524
await worker.readUntil(/end/);
525
526
const allOutput = await worker.output;
527
- expect(allOutput).contain("hello 6\nend");
+ expect(allOutput).contain("hello 6\nfoobar 12\nend");
528
});
529
}
530
);
0 commit comments