Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
RamIdeas committed Oct 4, 2024
1 parent 0e9725b commit 4b8028d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/wrangler/e2e/dev.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -929,13 +929,13 @@ describe("custom builds", () => {
});

const resText = await retry(
(text) => text === "hello\n",
(text) => text.includes("hello"),
async () => {
const res2 = await fetch(url);
return res2.text();
}
);
await expect(resText).toContain("world");
await expect(resText).toBe("world");
});
});

Expand Down

0 comments on commit 4b8028d

Please sign in to comment.