Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(remix-dev/vite, server-runtime): pass Vite server errors to vite.ssrFixStacktrace #8066

Merged
merged 12 commits into from
Nov 24, 2023
Prev Previous commit
tweak test name
  • Loading branch information
markdalgleish committed Nov 24, 2023
commit 09dcf0aa885ed35b9e97e07bcaea0768d2d17e0f
2 changes: 1 addition & 1 deletion integration/vite-dev-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ test.describe("Vite dev", () => {
expect(pageErrors).toEqual([]);
});

test("server error stacktrace", async ({ page }) => {
test("request errors map to original source code", async ({ page }) => {
let pageErrors: unknown[] = [];
page.on("pageerror", (error) => pageErrors.push(error));

Expand Down
Loading