-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: resolve duplex error when fetching with stream body (#167)
- Loading branch information
Showing
2 changed files
with
26 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import { test, expect } from "@playwright/test"; | ||
|
||
test("fetch with stream body should not throw errors", async ({ page }) => { | ||
await page.goto("http://127.0.0.1:8080/example/common.html"); | ||
const res = await page.evaluate(async () => { | ||
return new Promise(resolve => { | ||
const req = new Request("example1.txt", { | ||
method: "POST", | ||
body: "{}", | ||
}); | ||
fetch(req) | ||
.then(res => { | ||
resolve(true); | ||
}) | ||
.catch(err => { | ||
resolve(false); | ||
}); | ||
}); | ||
}); | ||
expect(res).toEqual(true); | ||
}); |