-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
Add Vite v6 support #10351
base: dev
Are you sure you want to change the base?
Add Vite v6 support #10351
Conversation
🦋 Changeset detectedLatest commit: b5206b3 The changes in this PR will be included in the next version bump. This PR includes changesets to release 19 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
test("Vite / dev / route added", async ({ page, browserName }) => { | ||
test.skip( | ||
browserName === "webkit", | ||
"Safari caches too aggressively, browser manifest is cached with old routes" | ||
); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We also needed to do this in React Router, seems to be triggered by the Playwright update: remix-run/react-router#11511
@@ -53,7 +53,7 @@ | |||
"@octokit/graphql": "^4.8.0", | |||
"@octokit/plugin-paginate-rest": "^2.17.0", | |||
"@octokit/rest": "^18.12.0", | |||
"@playwright/test": "^1.33.0", | |||
"@playwright/test": "^1.49.1", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's not clear to me why it was related, but attempting to run tests against Vite 6 raised some errors that are fixed in later versions of Playwright.
@@ -14,7 +14,7 @@ tsconfig.tsbuildinfo | |||
/fixtures/my-remix-app | |||
/fixtures/deno-app | |||
/integration/playwright-report | |||
/test-results | |||
test-results |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I noticed the test-results directory within integration was showing up in my git diffs.
No description provided.