Skip to content

Commit 4806a14

Browse files
committed
update c3-integration test
1 parent 37a023c commit 4806a14

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/create-cloudflare/src/helpers/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,6 @@ export const C3_DEFAULTS: C3Args = {
6262

6363
export const WRANGLER_DEFAULTS = {
6464
...C3_DEFAULTS,
65-
type: "hello-world",
65+
type: "hello-world-with-assets",
6666
deploy: false,
6767
};

packages/wrangler/e2e/c3-integration.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,6 @@ describe.runIf(process.platform !== "win32")("c3 integration", () => {
5353
});
5454
const { url } = await worker.waitForReady();
5555
const res = await fetch(url);
56-
expect(await res.text()).toBe("Hello World!");
56+
expect(await res.text()).toContain("Hello, World!");
5757
});
5858
});

0 commit comments

Comments
 (0)